在Objective-c中定义类时,也可以使用类似于C++中public、private来修饰成员变量,如下:
- @intterface Test:NSObject{
- @public
- int i;
- int j;
- @protected
- float m;
- float n;
- @private
- double x;
- double y;
- }
本文共 442 字,大约阅读时间需要 1 分钟。
在Objective-c中定义类时,也可以使用类似于C++中public、private来修饰成员变量,如下:
转载于:https://www.cnblogs.com/Free-Thinker/p/4962993.html