| Author |
Quick question about instance variables
|
Jake Miller
Ranch Hand
Joined: Jun 27, 2007
Posts: 43
|
|
Here is a class: And an object: So what exactly are the instance variables in this situation? Size and name? Name is not used again, so I am not even entirely sure why it is used.
|
 |
James Hambrick
Ranch Hand
Joined: Sep 04, 2004
Posts: 277
|
|
|
not sure why name it there either if it is not used, yes size and name are instance variables because you can call them using one.size, two.size. If size or name was static then they would not be instance variables but merely variables. If I am wrong someone correct me please.
|
Visit my blog! http://jameshambrick.com
|
 |
Jon Anslow
Greenhorn
Joined: May 05, 2006
Posts: 16
|
|
Originally posted by James Hambrick: if size or name was static then they would not be instance variables but merely variables.
Just to confirm, if size and name were static then they would be known as Class variables and would be accessed via the class name. A reference of the Dog Class would not need to be created to use them. eg:
|
 |
Bob Ruth
Ranch Hand
Joined: Jun 04, 2007
Posts: 318
|
|
In class Dog, size and name are instance variables. In class DogTestDrive, one, two, and three are local variables on the stack. I've seen this example before and I think it is part of a series of "snippets" and that later a constructor is used to pass in the name when a dog is instantiated.
|
------------------------
Bob
SCJP - 86% - June 11, 2009
|
 |
 |
|
|
subject: Quick question about instance variables
|
|
|