论证的组成部分的确切名称是什么?
示例:我有以下 Objective-C 代码:
+(NSString*)stringWithString:(NSString*)string;
字符串:是参数的名称?
NSString* 是参数的数据类型?
对于最后一部分,字符串我不确定。这也有点像一个名字。但确切的术语是什么?
这是苹果文档中的一个示例:
+ (id)dateWithTimeInterval:(NSTimeInterval)seconds sinceDate:(NSDate *)date
秒 添加到日期的秒数。使用负参数指定 date 之前的日期和时间。
日期 日期。
显然,他们在引用参数时查看的是变量,而不是数据类型括号前面的名称部分。我一直想知道如何正确命名这个东西。
Example: I have this Objective-C code:
+(NSString*)stringWithString:(NSString*)string;
String: is the name of the argument?
NSString* is the data type of the argument?
for the last part, string I'm not sure. It's somewhat a name too. But what's the exact term?
Here's an example from the apple docs:
+ (id)dateWithTimeInterval:(NSTimeInterval)seconds sinceDate:(NSDate *)date
seconds
The number of seconds to add to date. Use a negative argument to specify a date and time before date.
date
The date.
Obviously they're looking at the variable when referencing the arguments, not the name part in front of the datatype-brackets. I was always wondering how to name this thing correctly.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这里
+
表明它是类函数,您可以通过类而不是对象访问它。第一个
(NSString*)
显示它返回一个字符串,然后stringWithString
这是名称之后的
(NSString*)
是参数类型。最后
string
是用作函数本地参数的参数。函数、变量和类的名称遵循命名约定,以便于理解代码。
Here
+
shows that it is class function you can access it by the class not the object.first
(NSString*)
shows it returns an string thenstringWithString
this is the nameand after that
(NSString*)
is the argument type.and finally
string
is the argument which use as local parameter for the function.Name of the function , variables and classes follow a naming convention for easy understanding about the code.