Prohibit generating of apply for case class

前端 未结 3 1027
情书的邮戳
情书的邮戳 2021-02-15 23:47

I\'m writing a type-safe code and want to replace apply() generated for case classes with my own implementation. Here it is:

import shap         


        
3条回答
  •  野的像风
    2021-02-15 23:55

    There is a solution that is usually used if you want to provide some smart constructor and the default one would break your invariants. To make sure that only you can create the instance you should:

    • prevent using apply
    • prevent using new
    • prevent using .copy
    • prevent extending class where a child could call the constructor

    This is achieved by this interesing patten:

    sealed abstract case class MyCaseClass private (value: String)
    object MyCaseClass {
      def apply(value: String) = {
        // checking invariants and stuff
        new MyCaseClass(value) {}
      }
    }
    

    Here:

    • abstract prevents generation of .copy and apply
    • sealed prevents extending this class (final wouldn't allow abstract)
    • private constructor prevents using new

    While it doesn't look pretty it's pretty much bullet proof.

    As @LuisMiguelMejíaSuárez pointed out this is not necessary in your exact case, but in general that could be used to deal with edge cases of case class with a smart constructor.

提交回复
热议问题