论证的组成部分的确切名称是什么?

发布于 2024-10-08 21:42:19 字数 542 浏览 1 评论 0原文

示例:我有以下 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

帅气称霸 2024-10-15 21:42:19

这里 + 表明它是类函数,您可以通过类而不是对象访问它。
第一个 (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 then stringWithString this is the name
and 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文