what is or what type is private Object[] obj;?
what is or what type is private Object[] obj; ?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Objectis the ultimate ancestor of every class in the Java inheritance hierarchy.From the API:
The declaration:
declares a reference variable called
objfor an array ofObjects thatprivateto the class that declared it. (Note that this doesn’t create this array, only declares a variable capable of referencing it).