微信公众号: 线程
当面临一个类中包含许多方法的情况时,我们希望将其中一个方法提取出来,形成一个独立的类或接口。为了实现这一目标,我们可以遵循以下步骤。
下面通过一个具体的示例来演示上述步骤
假如现在ContextConfig类中有一个方法get, 我们希望将这个方法抽取出去。
public <Type> Optional<Type> get(Class<Type> type) {
return Optional.ofNullable(providers.get(type))
.map(provider -> (Type) provider.get());
}
首先定义一个新的接口Context,其中包含与 ContextConfig 类中的 get 方法一致的签名。
public class ContextConfig implements Context {
@Override
public <Type> Optional<Type> get(Class<Type> type) {
return Optional.ofNullable(providers.get(type))
.map(provider -> (Type) provider.get());
}
}
第二步,创建一个新的方法,叫做getConext, 返回一个Conext接口的实例。
public Context getContext() {
return new Context() {
@Override
public <Type> Optional<Type> get(Class<Type> type) {
return Optional.empty();
}
};
}
第三步, 将原始的get方法的主体抽取出来形成一个新的方法
public <Type> Optional<Type> get(Class<Type> type) {
return getType(type);
}
private <Type> Optional<Type> getType(Class<Type> type) {
return Optional.ofNullable(providers.get(type))
.map(provider -> (Type) provider.get());
}
第四步在getContext()方法中调用这个方法:
public Context getContext() {
return new Context() {
@Override
public <Type> Optional<Type> get(Class<Type> type) {
return getType(type);
}
};
}
然后将getType()方法给inline回去。这个时候就会发现getConext和get方法是完全一致的, 然后在get中调用getConext().get()。
public Context getContext() {
return new Context() {
@Override
public <Type> Optional<Type> get(Class<Type> type) {
return Optional.ofNullable(providers.get(type))
.map(provider -> (Type) provider.get());
}
};
}
@Override
public <Type> Optional<Type> get(Class<Type> type) {
return getContext().get(type);
}
跑一下测试, 然后将接口上拿掉, 然后将get给inline, 于是get就被从当前类中给提取出去了。