黑马程序员技术交流社区
标题:
给大家贴一个今天看视频学到的代码,
[打印本页]
作者:
Sniper_YJ
时间:
2014-5-20 23:48
标题:
给大家贴一个今天看视频学到的代码,
下面就是自己今天下午学的视频自己乱写的代码,请各位大神勿喷啦
//
// main.m
// 第一个类
//
// Created by apple on 14-5-20.
// Copyright (c) 2014年 itcast. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface Dog : NSObject
{
char name;
int age;
}
- (void)run;
- (void)eat;
@end
@implementation Dog
- (void)run
{
NSLog(@"dog is running");
}
- (void)eat
{
NSLog(@"dog is eating");
}
@end
@interface Car : NSObject
{
@public
int speed;
int whlees;
Dog *dog;
}
- (void)run;
- (void)stop;
- (void)liugou;
- (void)eatdog;
@end
@implementation Car
- (void)liugou
{
[dog run];
}
- (void)eatdog
{
[dog eat];
}
-(void)run
{
NSLog(@"车在跑了");
}
-(void)stop
{
NSLog(@"车停了");
}
@end
int main(int argc, const char * argv[])
{
Car *c = [Car new];
Dog *d = [Dog new];
c->dog= d;
[c liugou];
[c run];
[c stop];
return 0;
}
复制代码
作者:
离渊
时间:
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