恒定接口反模式澄清

恒定接口反模式澄清,第1张

恒定接口反模式澄清

我意识到……如果需要的话,该接口可以由个人实现,从而为上述问题(例如,命名空间污染,非常规使用,通过公共API公开)留出了空间。因此,最好是完全阻止实现接口的功能。因此,拥有一个

final
带有私有构造函数的类是更合适的,这样它就不能被实例化/扩展。

public final class Constants{      // to restrict instantiation      private Constants() {}      public static final double PI = 3.14159;      public static final double PLANCK_ConSTANT = 6.62606896e-34;}

…并将其与结合使用

import static

import static Constants.PLANCK_CONSTANT;import static Constants.PI;public class Calculations{         public double getReducedPlanckConstant()      {        return PLANCK_ConSTANT / ( 2 * PI );         }}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5439514.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-11
下一篇 2022-12-11

发表评论

登录后才能评论

评论列表(0条)

保存