A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 黑白世界 中级黑马   /  2015-10-8 23:07  /  806 人查看  /  3 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

1.类的声明
@interface 类名:父类名
{ 属性声明}
方法声明
@end
2.类的实现
@implementation
方法的实现
@end
3.创建对象,调用属性,调用方法(举例:类名Car  属性color  方法run)
Car *c1 = [Car new];
c1->color;
[car run];
4.有两个参数的方法的声明、实现和调用
声明:
-(返回值类型)方法名1:(参数类型1)参数1 方法名2:(参数类型2)参数2;
实现:
-(返回值类型)方法名1:(参数类型1)参数1 方法名2:(参数类型2)参数2{   }
调用:
[对象名 方法名1:参数1 方法名2:参数2];
代码举例:有一个类,类名是Student,它有三个属性:age,name,sex。有两个方法:sayHello和suanJiaFa.
  1. #import <Foundation/Foundation.h>

  2. //类的声明
  3. @interface Student : NSObject
  4. {   @public;
  5.     int age;
  6.     NSString *name;
  7.     NSString *sex;
  8. }
  9. -(void) sayHello;
  10. -(int) suanJiaFa:(int) num1 and:(int) num2;
  11. @end

  12. //类的实现
  13. @implementation Student
  14. -(void) sayHello{
  15.     NSLog(@"Hello EveryOne!");
  16. }
  17. -(int) suanJiaFa:(int) num1 and:(int) num2{
  18.     return num1 + num2;
  19. }
  20. @end


  21. int main(int argc, const char * argv[]) {
  22.     @autoreleasepool {
  23.         // 实现Student类的实例stuXiaoMing
  24.         Student *stuXiaoMing = [Student new];
  25.         //为属性赋值
  26.         stuXiaoMing->age = 22;
  27.         stuXiaoMing->name = @"小明";
  28.         stuXiaoMing->sex = @"男";
  29.         
  30.         //调用无返回值的方法
  31.         [stuXiaoMing sayHello];
  32.         //调用属性
  33.         NSLog(@"我叫 %@",stuXiaoMing->name);
  34.         NSLog(@"性别 %@,年龄 %d岁!",stuXiaoMing->sex,stuXiaoMing->age);
  35.         //调用有返回值有参数的方法
  36.         int s = [stuXiaoMing suanJiaFa:22 and:23];
  37.         NSLog(@"我会算加法,22+23=%d",s);
  38.         
  39.     }
  40.     return 0;
  41. }

复制代码



3 个回复

倒序浏览
学习了虽然我还没学到这里
回复 使用道具 举报
看不太懂~~
回复 使用道具 举报
看得似懂非懂的
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马