Tagged Questions
0
votes
1answer
61 views
How to know if Static Block Initialization has been run?
I am trying to get rid of some memory leaks. I'd like to reset all the static variables of all the classes (not only mine) from a class loader. There is a classes attribute that lists all the classes ...
0
votes
2answers
184 views
Calling non-library code from an Android library
Since Android introduced library projects, I've been converting my app into a library so that I can make several versions with appropriate tweaks (for example, a free and pro version using the same ...
2
votes
3answers
1k views
Java - Class type from inside static initialization block
Is it possible to get the class type from inside the static initialization block?
This is a simplified version of what I currently have::
class Person extends SuperClass {
String firstName;
...
