黑马程序员技术交流社区
标题:
求帮忙画出内存示意图,谢谢
[打印本页]
作者:
帅哥
时间:
2015-4-18 21:17
标题:
求帮忙画出内存示意图,谢谢
/*
设计一个方法,用来和其他车比较车速,返回车速的差距
*/
#import <Foundation/Foundation.h>
@interface Car : NSObject
{
@public
int speed;
}
- (int)compareSpeedWithOther:(Car *)other;
@end
@implementation Car
- (int)compareSpeedWithOther:(Car *)other
{
// speed
// other->speed
// 返回当前这辆车和other这辆车的速度差距
return speed - other->speed;
}
@end
int main()
{
Car *c1 = [Car new];
c1->speed = 300;
Car *c2 = [Car new];
c2->speed = 250;
int a = [c1 compareSpeedWithOther:c2];
NSLog(@"a=%d", a);
return 0;
}
复制代码
作者:
帅哥
时间:
2015-4-18 21:18
int a = [c1 compareSpeedWithOther:c2] 主要就是这一句用内存怎么表示
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2