I am looking for clarification. I am preparing for my certification exam and am getting conflicting info as to when variables and arrays are automatically initialized. As I understand it, all member variables (static or instance) are automatically initialized. False for booleans, 0 for all other primitives, and null for object references. Local variables are not initialized. Do I understand the rules of initialization correctly and do they also apply to arrays? Primitive array elements initialized to false or 0 and array elements of object references initialized to null?
------------------
Vince Clark
clarkvince@hotmail.com