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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© xu不是许 中级黑马   /  2015-10-31 23:38  /  523 人查看  /  0 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文


设计一个”学生“类
1> 属性
  姓名
    生日 用结构体作为类的实例变量(生日)
  1. #import <Foundation/Foundation.h>
  2. //定义结构体 生日
  3. typedef struct {
  4.     int year;
  5.     int month;
  6.     int day;
  7. }Date;
  8. /**
  9. *  学生类的声明
  10. */
  11. @interface Student : NSObject
  12. {
  13.     @public
  14.     NSString * _name;
  15.     Date _birthday;
  16. }
  17. -(void)show;

  18. @end
  19. /**
  20. *  学生类的实现
  21. */
  22. @implementation Student

  23. -(void)show
  24. {
  25.     NSLog(@"姓名=%@ ,生日=%d-%d-%d",_name,_birthday.year,_birthday.month,_birthday.day);

  26. }

  27. @end

  28. int main(int argc, const char * argv[]) {
  29.     @autoreleasepool {
  30.         Student * stu = [Student new ] ;
  31.         stu->_name = @"xiaolong";
  32.         Date d = {2015,10,31};
  33.         stu->_birthday = d;
  34.         [stu show];
  35.         
  36.     }
  37.     return 0;
  38. }
复制代码


0 个回复

您需要登录后才可以回帖 登录 | 加入黑马