In Java, is it possible to declare a new class field after the object has been constructed?
I remember being able to do so in Python using the "self" prefix:
def setMember():
this.member = value
But, perhaps that is one of the "benefits" of not requiring pre-declared variables?
I've done a little searching around but I haven't found anything that even references the subject. Perhaps I'm not using the right key words.