gpt4 book ai didi

java - 幕后的外观和构建器模式

转载 作者:行者123 更新时间:2023-12-01 10:05:54 25 4
gpt4 key购买 nike

我已经结合外观和构建器模式进行了练习。 Root 是一个简单的 LoginService 接口(interface)

public interface LoginService {
void addUser(int id, String username, String password, String mail);
boolean login(String username, String password);
void logout();
}

其他类是 LoginServiceDecorator 和一些具体的装饰器。最后是一个 Builder,通过这种方式进行测试:

service = new LoginServiceBuilder().withValidation().withEncoding().withLogging().toService();

有一些测试用例。

一切都很好,直到实现了 toService() 方法,我不知道如何实现。我表明我被困住了:

LoginServiceBuilder

public class LoginServiceBuilder {
/*
* Note that the decorators must be connected in reverse order of the
* builder method invocations. So we use a stack to hold all decorator
* instances and at the end of the building process, we connect the
* decorators in the right order.
*/
private Stack<LoginServiceDecorator> stack = new Stack<LoginServiceDecorator>();

public LoginServiceBuilder() {
}

public LoginServiceBuilder withValidation() {
stack.push(new ValidationDecorator(new LoginServiceImpl()));
return this;
}

public LoginServiceBuilder withEncoding() {
stack.push(new EncodingDecorator(new LoginServiceImpl()));
return this;
}

public LoginServiceBuilder withLogging() {
stack.push(new LoggingDecorator(new LoginServiceImpl()));
return this;
}

public LoginService toService() {
// Here I stucked
}

好吧,最后我放弃了,看了一下解决方案:

public LoginService toService() {
LoginService service = new LoginServiceImpl();
while (!stack.isEmpty()) {
LoginServiceDecorator decorator = stack.pop();
decorator.setService(service); // just to set the private member there (Type of the Interface as shown at beginning)
service = decorator;
}
return service;
}

为什么我还在挠头:对我来说,看起来当堆栈为空时,服务很简单,它捕获的最后一个服务很简单。也许有人可以用温和的语言向我解释为什么我现在应该拥有所有装饰器。

提前致谢

最佳答案

装饰器的作用是动态地在对象上添加行为。这就是他们实现相同接口(interface)的原因。

您应该使用一个装饰器来添加一种行为。这就是你创建一堆装饰器的原因

decorator.anOperation() 应该执行 decoratedObject.anOperation()通过使用继承,您可以替换被装饰的对象而不是被装饰的对象。这就是为什么要有 service = Decorator 的原因。在您的示例中,您用关联的装饰器替换您的服务(装饰对象),然后在装饰对象上应用下一个装饰器。

在堆栈的末尾,您有一个“fullDecolatedObject”。

有关更多解释,我发现这个网站很有用 http://www.dofactory.com 。该实现是用 C# 语言实现的,但可以轻松地转换为 Java 语言。观看此页面:http://www.dofactory.com/net/decorator-design-pattern

希望这有帮助

关于java - 幕后的外观和构建器模式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36483457/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com