1. 类的定义
类的定义分为两部分:
1)类的声明(规定当前类的:类名、属性、行为)
@interface 类名:父类名
{
//定义类的属性
}
//类的行为
@end
实例如下:
[c] view plaincopy
//车的类的声明
@interface Car :NSObject{
//类的属性
int lunzi;
NSString *color;//车的颜色
int speed;//车的速度
}
//类的行为
@end
2)类的实现(实现具体的行为)
@implementation 类名
{
//类的行为 实现
}
@end
实例如下:
[c] view plaincopy
//车的类的实现
@implementation Car
//行为的具体描述
@end |
|