vote up 4 vote down star
1

This code is taken from a SCJP practice test:

 3. public class Bridge { 
 4.   public enum Suits { 
 5.     CLUBS(20), DIAMONDS(20), HEARTS(30), SPADES(30), 
 6.     NOTRUMP(40) { public int getValue(int bid) { 
                        return ((bid-1)*30)+40; } }; 
 7.     Suits(int points) {  this.points = points;  } 
 8.     private int points; 
 9.     public int getValue(int bid) { return points * bid; } 
10.   } 
11.   public static void main(String[] args) { 
12.     System.out.println(Suits.NOTRUMP.getBidValue(3)); 
13.     System.out.println(Suits.SPADES + " " + Suits.SPADES.points); 
14.     System.out.println(Suits.values()); 
15.   } 
16. }

On line 8 points is declared as private, and on line 13 it's being accessed, so from what I can see my answer would be that compilation fails. But the answer in the book says otherwise. Am I missing something here or is it a typo in the book?

flag

47% accept rate

4 Answers

vote up 8 vote down check

All code inside single outer class can access anything in that outer class whatever access level is.

link|flag
vote up 3 vote down

To expand on what stepancheg said:

From the Java Language Specification section 6.6.1 "Determining Accessibility":

if the member or constructor is declared private, then access is permitted if and only if it occurs within the body of the top level class that encloses the declaration of the member or constructor.

Essentially, private doesn't mean private to this class, it means private to the top-level class.

link|flag
vote up 2 vote down

First check out line 12

  System.out.println(Suits.NOTRUMP.getBidValue(3));

getBidValue is undefined

link|flag
it is defined at line 6 – Vasil May 4 at 6:00
@Vasil: on line 6 it says "getValue" not "getBidValue" – newacct May 4 at 6:07
sorry, so there is a typo after all. +1 for noticing that. – Vasil May 4 at 6:27
This code appears in this book: amazon.co.uk/dp/0071591060 But in my book copy line 12 is: System.out.println(Suits.NOTRUMP.getValue(3)); I don't find any typo in this code. – aovila May 4 at 9:50
@aovila I have only an electronic version of the book and I copied and pasted, maybe it's corrected in print – Vasil May 4 at 10:35
show 2 more comments
vote up 0 vote down

Similarly, an inner class can access to private members of its outer class.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.