Hello !
If you have a variable into a method like this:
And try to use, it will not compile, because it is not initialized!
But if you have code like this.
It may not throw a exception (depending how you use that), because all instance variable is default null (if not primitive)
In this case, you only can print (the null state) but cannot use the String methods, because the object does not exist yet!
[ January 21, 2008: Message edited by: Mateus Brum ]