Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I started experimenting in java so I can get a more firm grasp on the concepts because they take some time to sink in. I never really understood why methods in a main class has to be static. i understand static variables but static methods seems too abstract right now. Is it because if I was to create two methods with the same name in two different classes it wont clash each other if I use the keyword static?

And I don't understand why I cant create a static constructor.

It would help me a great deal if anyone can enlighten me regarding this concept.:)

share|improve this question
1  
this is a sort tutorial from Oracle on statics: download.oracle.com/javase/tutorial/java/javaOO/classvars.html – Miguel Prz Oct 15 '11 at 20:28
@user983246 If you find an answer to a question, we appreciate a click on the Accept check-mark. You even get points for doing it! – Sinthia V Oct 15 '11 at 22:33

3 Answers

up vote 21 down vote accepted

Java has [static constructors] static initialization blocks which can be viewed as a "static constructor":

class Foo {
  static String Bar;
  static {
     // "static constructor"
     Bar = "Hello world!";
  }
}

In any case, the only method in the main class which must be static is the main method. This is because it is invoked without first creating an instance of the "main class". A common technique, and the one I prefer, is to quickly get out of static context:

class Main {
   int argCount;

   public void Main (String[] args) {
     // and back to boring ol' non-static Java
     argCount = args.length;       
   }

   void runIt () {
      System.out.println("arg count: " + argCount);
   }

   // must be static -- no Main instance created yet
   public static void main (String[] args) {
      Main me = new Main(args);
      me.runIt();
   }
}

Also, static has nothing to do with "name clashes". A static method (or variable) is simply a method (or variable) that is not associated with a specific instance of a type. I would recommend reading through the Classes and Objects Java Tutorial and the section Understanding Instance and Class Variables.

Happy coding.

share|improve this answer
1  
This is not called constructor. This is actually called static initialization block that executes at class loading. To say it a constructor is wrong as constructor for a class, creates an object of that class. – Ankit Feb 16 at 16:05
@Ankit Thanks - updated the answer. Feel free to update it more as you see it. – user166390 Feb 16 at 18:59

Static methods belong to a class, not an object. The main method must be static because it is called first, before any other code has executed to instantiate any objects. It provides an entry point to the program. Static methods are called from outside of the container of an object. The same is true of static class variables. Only one copy exists for the entire class, as opposed to a member variable, which is created once for each object created from a class. They are used to store data for the class, such as the number of object instances have been created and not destroyed. This data belongs with the class. A good example of a static method is in the singleton pattern, where the constructor is private and can only be accessed by a static member function. A function outside the class would be unable to replicate this functionality. This method acts on class data and objects, so logically belongs to the same class. This all boils down to encapsulation. A class is responsible only for itself and knows only itself.

On the other hand, object methods are meant to operate on the data associated with a single instance of a class, an object. Constructors are the code that is used to initialize an object and set it's data to an initial state. They are executed immediately (and automatically) after the memory has been allocated to store a new object. Even if you do not explicitly define a constructor, a kind of "default constructor" is executed in order to map the object's member variables and the object's method code to the new object.

Hope this helps.

share|improve this answer
Thanks guys! The concept seems to be sinking in much better than before. You guys rock! – user983246 Oct 15 '11 at 20:56

I wrote a simple example as an answer to a related question yesterday which may help make things more understandable: what's the point of java constructor?

The point of Static methods is that they can be called without creating an instance of a class, while "normal" instance methods are related to an instance, and can not be called without one.

Since the Main method of the Main class is the entry point of the program, no instance can possibly have been created yet, so naturally, you can not access it via an instance. Therefore, it is Static, so it can be run as the start of the program.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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