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 heard there is something related to Classloaders?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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.