类的声明和实现 类: 一类事物共同特征和行为的抽象 类的定义分为两部分: 1> 类的声明(规定当前类的:类名,属性,行为) @interface 类名:父类名 { //定义类的属性 } //类的行为 @end
2> 类的实现(实现具体行为) @inplementation 类名 //行为的具体实现 @end
对象: 类的具体的个体,万物皆对象
车的类的声明 @interface Car:NSObject { //类的属性 int wheel;//轮子 NSString *color;//颜色 int speed;//速度 } //类的行为 @end
类的实现 @implementation Ca //行为的具体描述 @end
|
|