Can someone please help me to understand how to declare an instance variable? The books I've been reading have not been very helpful with what I am assuming they think is an easy concept so it is left out.


1 | private int instanceVariable; |
1 2 3 4 5 | public Class AClass { //instance variables here //other code here } |