黑马程序员技术交流社区
标题:
设计一个方法,用来和其他车比较车速,返回车速差距
[打印本页]
作者:
S970028126
时间:
2015-6-24 20:13
标题:
设计一个方法,用来和其他车比较车速,返回车速差距
本帖最后由 S970028126 于 2015-6-24 20:14 编辑
# import <Foundation/Foundation.h>
@interface Car : NSObject
{
@public
int speed;
}
- (int)compareSpeedWithOther: (Car *)other;
@end
@implementation Car
- (int)compareSpeedWithOther: (Car *)other
{
return speed - other->speed;
}
@end
int main()
{
Car *c1 = [Car new];
c1->speed = 300;
Car *c2 = [Car new];
c2->speed = 280;
int a = [c1 compareSpeedWithOther:c2];
NSLog (@"a=%d", a);
return 0;
}
作者:
FonSts
时间:
2015-6-24 20:28
好麻烦的样子,如果能简化一下最好,你能把这个搞好了你一定会收益很多的~~
作者:
aofex
时间:
2015-6-24 21:21
先收藏了
作者:
XiaoBaoMi
时间:
2015-6-24 21:23
楼主的方法不错 学习了
作者:
沙睿
时间:
2015-6-24 21:39
楼主方法不错,已学习
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2