Objective C 实现上下文内部和外部声明静态变量的区别?
可能的重复:
我必须在哪里声明静态变量?
我已经看到的代码
@implementation ClassA
static NSString *str = nil;
.....
@end
以及
static NSString *str = nil;
@implementation ClassA
.....
@end
如果在 @implmentation 上下文内部和外部声明静态变量有什么区别
Possible Duplicate:
Where do I have to declare static variables?
I've seen code like
@implementation ClassA
static NSString *str = nil;
.....
@end
as well as
static NSString *str = nil;
@implementation ClassA
.....
@end
What's the difference if a static var is declared inside the @implmentation context vs outside
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
之间没有区别
它们
的工作方式相同...
There is no difference between
and
They work the same way ...