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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

#import<Foundation/Foundation.h>

@interface Book :NSObject
{
int _price;
}
-(void)setPrice:(int)price
-(int)price;
@end

@implementation Book
-(void)setPrice:(int)price
{

_price = price;

}

-(int)price
{


return _price;
}



@end


//person类
@interface Person : NSObject
{
//组合
Book *_book;
}
-(void)setBook:(Book *)book;
-(Book *)book;
@end

@implementation
-(void)setBook:(Book *)book
{
_book = book

}

-(Book *)book
{

return book;
}
@end



int main()
{
//*******************
  Book *b =[[Book alloc] init];//创建对象

  Person *p1=[[Person alloc] init];














  [p1 release];
           //有alloc,马上写上[b release]在其下面

  [b release];//回收对象
//********************




return 0;
}

0 个回复

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