Difference between static const and const on a variable
本问题已经有最佳答案,请猛点这里访问。
以下两者之间有任何区别:
1 2 3 4 5 6 | #import <UIKit/UIKit.h> const static NSString * name; @interface AppDelegate : UIResponder <UIApplicationDelegate> @end |
还有:
1 2 3 4 5 | #import <UIKit/UIKit.h> const NSString * name; @interface AppDelegate : UIResponder <UIApplicationDelegate> @end |