美文网首页
条目4:为不可实例化的类提供私有构造器

条目4:为不可实例化的类提供私有构造器

作者: lmtoo | 来源:发表于2018-03-03 23:46 被阅读0次

    工具类不希望被实例化。

    将类设置成抽象的来强制该类不被实例化是行不通的。因为该类还可以子类化。

    // Noninstantiable utility class

      public class UtilityClass {

          // Suppress default constructor for noninstantiability

          private UtilityClass() {

              throw new AssertionError();

          }

          ...  // Remainder omitted

      }


    以上写法的优点:

    提供私有构造器,防止外部调用构造函数,同时防止子类化

    在构造其中抛出AssertionError异常,防止在类内部调用构造器

    相关文章

      网友评论

          本文标题:条目4:为不可实例化的类提供私有构造器

          本文链接:https://www.haomeiwen.com/subject/eroxfftx.html