黑马程序员技术交流社区

标题: 给大家贴一个今天看视频学到的代码, [打印本页]

作者: Sniper_YJ    时间: 2014-5-20 23:48
标题: 给大家贴一个今天看视频学到的代码,
下面就是自己今天下午学的视频自己乱写的代码,请各位大神勿喷啦
  1. //
  2. //  main.m
  3. //  第一个类
  4. //
  5. //  Created by apple on 14-5-20.
  6. //  Copyright (c) 2014年 itcast. All rights reserved.
  7. //

  8. #import <Foundation/Foundation.h>

  9. @interface Dog : NSObject
  10. {
  11.     char name;
  12.     int age;
  13. }

  14. - (void)run;
  15. - (void)eat;
  16. @end

  17. @implementation Dog

  18. - (void)run
  19. {
  20.     NSLog(@"dog is running");
  21. }

  22. - (void)eat
  23. {
  24.     NSLog(@"dog is eating");
  25. }

  26. @end

  27. @interface Car : NSObject
  28. {
  29.     @public
  30.     int speed;
  31.     int whlees;
  32.     Dog *dog;
  33. }

  34. - (void)run;
  35. - (void)stop;
  36. - (void)liugou;
  37. - (void)eatdog;
  38. @end

  39. @implementation Car
  40. - (void)liugou
  41. {
  42.     [dog run];
  43. }
  44. - (void)eatdog
  45. {
  46.     [dog eat];
  47. }

  48. -(void)run
  49. {
  50.     NSLog(@"车在跑了");
  51. }
  52. -(void)stop
  53. {
  54.     NSLog(@"车停了");
  55. }

  56. @end





  57. int main(int argc, const char * argv[])
  58. {
  59.     Car *c = [Car new];
  60.     Dog *d = [Dog new];
  61.     c->dog= d;
  62.     [c liugou];
  63.     [c run];
  64.     [c stop];
  65.     return 0;
  66. }
复制代码

作者: 离渊    时间: 2014-5-21 12:57
车也遛狗了···
作者: Sniper_YJ    时间: 2014-5-21 13:29
嘿嘿,乱写的啦
作者: 抱0抱    时间: 2014-6-17 21:13
遛狗= =!自娱自乐呀!
作者: 剑气近    时间: 2014-6-17 23:46
额  我还在学C语言呢
作者: baby14    时间: 2018-9-12 07:47
多谢分享




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2