首页 > 代码库 > 构造方法。

构造方法。

+ (id)studentWithName:(NSString *)name {

    //这里最好写self Class

    Student *stu = [[[[self class] alloc] init] autorelease];

    stu.name = name;

    return stu;

}

构造方法。