标签:
+ (id)studentWithName:(NSString *)name {
//这里最好写self Class
Student *stu = [[[[self class] alloc] init] autorelease];
stu.name = name;
return stu;
}
构造方法。
原文地址:http://www.cnblogs.com/unity-lan/p/4195686.html