aspose file tools
The moose likes Beginning Java and the fly likes Inner class code example Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Beginning Java
Reply Bookmark "Inner class code example" Watch "Inner class code example" New topic
Author

Inner class code example

Mansukhdeep Thind
Ranch Hand

Joined: Jul 27, 2010
Posts: 1142

Hi

I tried out the following code :



The result is 21. My question is how can class Gazer access a static variable? I mean we are trying to access a static member of the outer class from a non static context. So it should throw an exception right?


~ Mansukh
Paul Clapham
Bartender

Joined: Oct 14, 2005
Posts: 16483
    
    2

There's never anything wrong with accessing a static member from a non-static context.
Mansukhdeep Thind
Ranch Hand

Joined: Jul 27, 2010
Posts: 1142

Paul Clapham wrote:There's never anything wrong with accessing a static member from a non-static context.


Ohhh.. Ok.. So the problem is when we try to access a non static member from a static context. Correct Paul? That will upset the compiler right?
Paul Clapham
Bartender

Joined: Oct 14, 2005
Posts: 16483
    
    2

Mansukhdeep Thind wrote:So the problem is when we try to access a non static member from a static context. Correct Paul? That will upset the compiler right?


Yes, I'm sure you must have seen that message already, haven't you?
Mansukhdeep Thind
Ranch Hand

Joined: Jul 27, 2010
Posts: 1142

Paul Clapham wrote:
Mansukhdeep Thind wrote:So the problem is when we try to access a non static member from a static context. Correct Paul? That will upset the compiler right?


Yes, I'm sure you must have seen that message already, haven't you?


Thank you Paul.
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: Inner class code example
 
Similar Threads
printing out array values
Method Local Inner class cannot access Final local Variables Problem
plz tell me about my prolem?
Question on inner classes
SCJP Self test question: navel gazing