策略模式是在执行时依需求而选择算法的模式。在策略模式中,我们创建表示各种策略的对象和一个行为随着策略对象改变而改变的 context 对象。策略对象改变 context 对象的执行算法。
策略模式意图:定义一系列的算法,把它们一个个封装起来, 并且使它们可相互替换。
主要解决:在有多种算法相似的情况下,使用 if...else 所带来的复杂和难以维护。
何时使用:一个系统有许多许多类,而区分它们的只是他们直接的行为。
如何解决:将这些算法封装成一个一个的类,任意地替换。
关键代码:实现同一个接口。
应用实例: 1、诸葛亮的锦囊妙计,每一个锦囊就是一个策略。 2、旅行的出游方式,选择骑自行车、坐汽车,每一种旅行方式都是一个策略。
优点: 1、算法可以自由切换。 2、避免使用多重条件判断。 3、扩展性良好。
缺点: 1、策略类会增多。 2、所有策略类都需要对外暴露。
使用场景: 1、如果在一个系统里面有许多类,它们之间的区别仅在于它们的行为,那么使用策略模式可以动态地让一个对象在许多行为中选择一种行为。 2、一个系统需要动态地在几种算法中选择一种。 3、如果一个对象有很多的行为,如果不用恰当的模式,这些行为就只好使用多重的条件选择语句来实现。
注意事项:如果一个系统的策略多于四个,就需要考虑使用混合模式,解决策略类膨胀的问题。
举例说明:验证textField。
UML1.创建context:CustomTextField。
@interface CustomTextField : UITextField
// 抽象的策略
@property (nonatomic, strong) InputTextFieldValidate *inputValidate;
// 验证是否符合要求
- (BOOL)validate;
@end
通过外部创建具体的策略,传入CustomTextField中,通过调用'validate'方法来调用策略的算法。
@implementation CustomTextField
- (BOOL)validate {
BOOL result = [self.inputValidate validateInputTextField:self];
if (!result) {
NSLog(@"---%@",self.inputValidate.attributeInputStr);
}
return result;
}
@end
- 抽象出策略strategy: InputTextFieldValidate。
@interface InputTextFieldValidate : NSObject
// 策略输入 YES 表示测试通过.No 表示测试不通过
- (BOOL)validateInputTextField:(UITextField *)textField;
@property (nonatomic, copy) NSString *attributeInputStr; /**< 属性字符串 */
@end
@implementation InputTextFieldValidate
- (BOOL)validateInputTextField:(UITextField *)textField {
return NO;
}
@end
- 将几种算法封装到具体的策略对象中。
策略一:
@interface LatterTextFieldValidate : InputTextFieldValidate
@end
@implementation LatterTextFieldValidate
- (BOOL)validateInputTextField:(UITextField *)textField {
if (textField.text.length == 0) {
self.attributeInputStr = @"字母不能是空的";
return NO;
}
// ^[a-zA-Z]*$ 从开头(^)到结尾($), 有效字符集([a-zA-Z])或者更多(*)个字符
NSRegularExpression *regex = [NSRegularExpression regularExpressionWithPattern:@"^[a-zA-Z]*$" options:NSRegularExpressionAnchorsMatchLines error:nil];
NSUInteger numberOfMatches = [regex numberOfMatchesInString:[textField text] options:NSMatchingAnchored range:NSMakeRange(0, [[textField text] length])];
// NSString *outLatter = nil;
// 进行判断,匹配不符合表示0的话, 就走下面的逻辑
if (numberOfMatches == 0) {
self.attributeInputStr = @"不全是字母, 输入有误,请重新输入";
} else {
self.attributeInputStr = @"输入正取,全部是字母";
}
return self.attributeInputStr == nil ? YES : NO;
}
@end
策略二:
@interface NumberTextFieldValidate : InputTextFieldValidate
@end
@implementation NumberTextFieldValidate
- (BOOL)validateInputTextField:(UITextField *)textField {
if (textField.text.length == 0) {
self.attributeInputStr = @"数值不能是空的";
return nil;
}
// ^[a-zA-Z]*$ 从开头(^)到结尾($), 有效字符集([a-zA-Z])或者更多(*)个字符
NSRegularExpression *regex = [NSRegularExpression regularExpressionWithPattern:@"^[0-9]*$" options:NSRegularExpressionAnchorsMatchLines error:nil];
NSUInteger numberOfMatches = [regex numberOfMatchesInString:[textField text] options:NSMatchingAnchored range:NSMakeRange(0, [[textField text] length])];
// NSString *outLatter = nil;
// 进行判断,匹配不符合表示0的话, 就走下面的逻辑
if (numberOfMatches == 0) {
self.attributeInputStr = @"不全是数字, 输入有误,请重新输入";
} else {
self.attributeInputStr = @"输入数字,全部是字母";
}
return self.attributeInputStr == nil ? YES : NO;
}
@end
- 使用 Context 来查看当它改变策略 Strategy 时的行为变化。
@interface ViewController () <UITextFieldDelegate>
@property (weak, nonatomic) IBOutlet CustomTextField *letterInput; /**< 字母输入 */
@property (weak, nonatomic) IBOutlet CustomTextField *numberInput; /**< 数字输入 */
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
self.letterInput.delegate = self;
self.numberInput.delegate = self;
// 初始化
self.letterInput.inputValidate = [LatterTextFieldValidate new];
self.numberInput.inputValidate = [NumberTextFieldValidate new];
}
#pragma mark - UITextFieldDelegate
- (void)textFieldDidEndEditing:(UITextField *)textField {
if ([textField isKindOfClass:[CustomTextField class]]) {
[(CustomTextField *)textField validate];
}
}
上面代码下载地址:策略模式
工厂模式和策略模式的区别
在于实例化一个对象的位置不同,对工厂模式而言,实例化对象是放在服务端的,即放在了工厂类里面,而策略模式实例化对象的操作在客户端,服务端只负责传递该对象,并在服务端的环境里执行特定的操作。
网友评论