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 static method  query? 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 "static method  query?" Watch "static method  query?" New topic
Author

static method query?

kiran kumar
Greenhorn

Joined: May 24, 2008
Posts: 18
class A{
static void methodA(){
System.out.println("in methodA");
}
public static void main(String ar[]){
A a1=new A();
a1.methodA(); //when we have to use this one
A.methodA(); //when we have to use this one

}


Thanks & Regards,<br />Bhuvan Samrat.
Rodrigo Lopes
Ranch Hand

Joined: Feb 29, 2008
Posts: 118
Read this
 
I agree. Here's the link: http://aspose.com/file-tools
 
subject: static method query?
 
Similar Threads
setRollbackOnly() related question
the" fina"l and "static'
Read file from directory, update contents of the each file
Certification Study Guide by Simon Roberts Philip Heller Micheal Ernst
how to understand static method