aspose file tools
The moose likes Programmer Certification (SCJP/OCPJP) and the fly likes Inner Local Classes Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Certification » Programmer Certification (SCJP/OCPJP)
Reply Bookmark "Inner Local Classes" Watch "Inner Local Classes" New topic
Author

Inner Local Classes

Saira Dhanani
Greenhorn

Joined: Sep 07, 2006
Posts: 3
Need some help with the following program
When trying to print in the Non static local class the following error is encountered
C:\java>javac TLCWithLoacalClasses.java
TLCWithLoacalClasses.java:30: <identifier> expected
System.out.println("xyz");





Thanks for helping
Saira
Barry Gaunt
Ranch Hand

Joined: Aug 03, 2002
Posts: 7729
This is a simple syntax error. You are putting an executable statement "System.out.println("xyz");" in the wrong place. It needs to be in a method.


Ask a Meaningful Question and HowToAskQuestionsOnJavaRanch
Getting someone to think and try something out is much more useful than just telling them the answer.
Saira Dhanani
Greenhorn

Joined: Sep 07, 2006
Posts: 3
Thank You ...
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: Inner Local Classes
 
Similar Threads
Please rectify this code on anonymous classes
when static why does answer change?
I have some questions regarding the access in enclosing context of static and non-sta
static method local classes
static final variable initialization inside instance init block