File APIs for Java Developers
Manipulate DOC, XLS, PPT, PDF and many others from your application.
http://aspose.com/file-tools
The moose likes Beginning Java and the fly likes public static void main() Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Java » Beginning Java
Reply Bookmark "public static void main()" Watch "public static void main()" New topic
Author

public static void main()

Nilanjan Sahu
Greenhorn

Joined: Apr 27, 2008
Posts: 3
i read in many reputed books and also seen that a static function cal call only static members but in java public static void main() can call all functions. How?
fred rosenberger
lowercase baba
Bartender

Joined: Oct 02, 2003
Posts: 10040
    
    6

a static method can only access static members... or constructors. Once you construct the object, you can call it's non-static methods. a common idiom you'll see is

public class SomeClass {
public static void main(String args[]) {
SomeClass myInstance = new SomeClass();
myInstanct.callAMethod();
}
public void callAMethod(){
//do something
}

}


Never ascribe to malice that which can be adequately explained by stupidity.
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: public static void main()
 
Similar Threads
main method
how to complie/run a java prog with 2 or more classes
class 1
Main method
can servlet be called from main()