Objective-C 工厂方法

时间:2022-11-20 06:22:09

类方法用来创建对象的方法就是工厂方法

1、无参工厂方法

创建对象,并给属性一个默认值。


//无参工厂方法实现
+(Student*)student{
return [[Student alloc]init];
}

2、有参工厂方法

  2.1.要依赖有参的初始化方法 -(id)initWithAge:(int)age;

    2.2.创建对象,并给属性一个指定的值   

//有参工厂方法实现
+(Student*)studentWithAge:(int)age andSex:(char)sex andSalary:(double)salary{
return [[Student alloc]initWithAge:age andSex:sex andSalary:salary];
}

规范:
工厂方法的方法名一定以类名开头,注意去除了前缀,首字母 要小写
工厂方法,不但使用自定义类,官方的类也遵守这个规范

类Student.h

Objective-C 工厂方法

Objective-C 工厂方法

Objective-C 工厂方法

Objective-C 工厂方法