作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试来自 fluffycat 的构建器示例
SodaImpSingleton sodaImpSingleton = new SodaImpSingleton(new CherrySodaImp());
System.out.println("testing medium soda on the cherry platform");
MediumSoda mediumSoda = new MediumSoda();
mediumSoda.pourSoda();
这里sodaImSingleton和mediumSuda之间没有关系,仍然当mediumSoda.pourSoda()被调用时它会打印CherrySodaImp.pourSodaImp() 这是如何/为什么会发生?
最佳答案
有一个关系。 SodaImpSingleton
实例化为 CherrySodaImp
。接下来,MediumSoda extends Soda
并在其构造函数中调用方法 setSodaImp()
,其实现为 SodaImpSingleton.getTheSodaImp();
摘要Soda
类,一个返回 CherrySodaImp
的静态方法在第一行创建实例。
关于java - fluffycat 示例中 Builder 加 Singleton 模式的困惑,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16464444/
我正在尝试来自 fluffycat 的构建器示例 SodaImpSingleton sodaImpSingleton = new SodaImpSingleton(new CherrySodaImp(
我是一名优秀的程序员,十分优秀!