标签:
1、自定义构造方法
- (id) initWithAge:(int)age andNo:(int)no {
// 首先要调用super的构造方法
// self = [super init];
if (self = [super init]) {
_age = age;
_no = no;
}
return self;
}
2、重写父类的description方法
在entity中重写父类description 方法,在NSLog(@"%@",entity)打印entity时不再显示内存地址,而是显示description 返回的字符串。
- (NSString *)description {
NSString *str = [NSString stringWithFormat:@"age is %i and no is %i", self.age, self.no];
return str;
}
标签:
原文地址:http://www.cnblogs.com/duke-cui/p/4678072.html