This week's book giveaway is in the General Computing forum.
We're giving away four copies of Arduino in Action and have Martin Evans, Joshua Noble, and Jordan Hochenbaum on-line!
See this thread for details.
The moose likes Beginning Java and the fly likes Object references that are not initialized Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Java » Beginning Java
Reply Bookmark "Object references that are not initialized " Watch "Object references that are not initialized " New topic
Author

Object references that are not initialized

RaviNada Kiran
Ranch Hand

Joined: Jan 30, 2009
Posts: 528
Hi Ranchers ,
I am confused here

Is this true ?

Object references that are not initialized
explicitly will have their value set to null always



If you want something you never had do something which you had never done
Campbell Ritchie
Sheriff

Joined: Oct 13, 2005
Posts: 32833
    
    4
Yes, but only if they are fields; if they are local variables they may cause a compiler error.
RaviNada Kiran
Ranch Hand

Joined: Jan 30, 2009
Posts: 528

Thanks
Campbell Ritchie
Sheriff

Joined: Oct 13, 2005
Posts: 32833
    
    4
You're welcome
Clyde DeSouza
Greenhorn

Joined: Mar 16, 2009
Posts: 26
Yes, but only if they are fields;
Ritchie fields are always initialised to Zero value if not initialized,not Null!
Rob Spoor
Sheriff

Joined: Oct 27, 2005
Posts: 19232

Joywish Man wrote:
Yes, but only if they are fields;
Ritchie fields are always initialised to Zero value if not initialized,not Null!

We're talking about object references, not numeric primitives. Zero is not a valid value for an obect reference.


SCJP 1.4 - SCJP 6 - SCWCD 5
How To Ask Questions How To Answer Questions
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: Object references that are not initialized
 
Similar Threads
Initialization
Mock Exam quesions
what is the output and how..
Object Ref
Object references that are not initialized .. (true?)