大家好,又见面了,我是你们的朋友全栈君。
这是关于管道实现的设计问题。以下是我的天真实施。流水线设计模式实现
接口在管道的各个步骤/阶段:在流水线的步骤/阶段的
public interface Step {
具体实现:
public class StepOne implements Step {
@Override
public Integer execute(Integer input) {
return input 100;
}
}
public class StepTwo implements Step {
@Override
public Integer execute(Integer input) {
return input 500;
}
}
public class StepThree implements Step {
@Override
public String execute(Integer input) {
return “The final amount is ” input;
}
}
管道类将持有/注册在管道中的步骤和依次执行它们:
public class Pipeline {
private List pipelineSteps = new ArrayList<>();
private Object firstStepInput = 100;
public void addStep(Step step) {
pipelineSteps.add(step);
}
public void execute() {
for (Step step : pipelineSteps) {
Object out = step.execute(firstStepInput);
firstStepInput = out;
}
}
}
潜水员程序执行te管道:
public class Main {
public static void main(String[] args) {
Pipeline pipeline = new Pipeline();
pipeline.addStep(new StepOne());
pipeline.addStep(new StepTwo());
pipeline.addStep(new StepThree());
pipeline.execute();
}
}
但是,正如你所看到的天真的实现有很多限制。
其中一个主要的问题是,由于要求每个步骤的输出可以是任何类型,所以朴素的实现不是类型安全的(Pipeline类中的执行方法)。如果我碰巧不正确地连线管道中的步骤,该应用程序将失败。
任何人都可以帮助我设计的解决方案,通过添加我已编码,或指向我已经存在的模式来解决这个问题吗?
1
[这个问题](http://stackoverflow.com/questions/5686332/pipeline-pattern-implementation-in-java)链接到[该文献]( http://parlab.eecs.berkeley.edu/wiki/_media/patterns/pipeline-v1.pdf)引用模式。 –
0
谢谢@NickBell指着这篇论文。但是,通过这篇论文,我无法理解管道的设计方式,因此它可以处理不同输出类型的阶段/步骤。 –
2
我会考虑考虑[Java 1.8 流](https://docs.oracle.com/javase/8/docs/api/java/util/stream/package-summary.html),因为它们提供[功能]( https://docs.oracle.com/javase/tutorial/collections/streams/)/ [doc’s](http://www.oracle.com/technetwork/articles/java/ma14-java-se-8-streams- 2177646.html)到你所说的例子。看到这里的[重复](http://stackoverflow.com/questions/8680610/java-generics-chaining-together-generic-function-object) –
发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/170394.html原文链接:https://javaforall.cn