0
Can static be used before constructor?
2 Respostas
0
No.
0
static belong to class, not to object, and initialized only onece, when the class is declared. So when you use object constructor it's do not use static variables and methods. It's about how i understood it.