is it possible to have multiple instances of static variables

后端 未结 1 1023
孤城傲影
孤城傲影 2020-12-19 08:16

Static variables have only instance (that is they are part of the class). ex: Math.pi

Is there any way there could be multiple instances of static variables? I hear

相关标签:
1条回答
  • 2020-12-19 09:13

    If you find that you need multiple instances of a static variable, this is a strong indication that you should not be using static variables in the first place.

    Yes, if the same class is loaded in different class loaders, then each copy of the class will have its own statics. However, the only code that can refer statically to those statics will be classes loaded by the same class loader. And of course, that code will only (statically) see the statics in one copy of the class. So you probably haven't achieved a lot.

    Rather than messing around with classloaders, you should be refactoring your code to turn the static variables into instance variables.

    0 讨论(0)
提交回复
热议问题