代码1
@interface Rectangle : NSObject
{
int width,height;
}
@property int width,height;
代码2
@interface Rectangle : NSObject
@property int width,height;
{
int width,height;
}
谁能告诉我,他们之间有什么不同?在@property
我已经提出int
了width
and height
。为什么要在大括号中再次声明?</p>
更新:我使用的是 osx 10.8 64bit。