Sep 23
|
You can achieve that by using a static block
public class StaticBlockTest { static { // this block will get run once // when the class first loads } }
CategoriesArchives
|
You can achieve that by using a static block public class StaticBlockTest { static { // this block will get run once // when the class first loads } } |
|