Programming Style: Method Definition with or without a semicolon.
Programming Style: Method Definition with or without a semicolon.
- Subject: Programming Style: Method Definition with or without a semicolon.
- From: "Frederick C. Lee" <email@hidden>
- Date: Thu, 15 Oct 2009 19:54:56 -0500
1) I've seen an alternative way of defining a method, with the
semicolon after the declaration, before the body:
- (NSArray *)sortedIncredients; <-- notice the semicolon
{
...
}
2) ... versus the standard declaration + body of the definition
(without the semicolon):
- (NSArray *)sortedIncredients {
...
}
Both seem to work the same.
Is there any benefit of (1) over (2) or is it merely style of
programming?
Ric.
_______________________________________________
Cocoa-dev mailing list (email@hidden)
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden