can we use 2 main on 1 class in java?

is it valid or it gave compilation error

public class test{
int j;
public void show();
public void see()

public static void main(string args[])
{
test test=new test();
test.show();
}
public static void main(string args[])
{
test.see()
}
}

Replies

  • Neeraj Sharma
    Neeraj Sharma
    You can write a program with multiple main in a single class in java but the above program will give error. To be able to use multiple main methods inside a class, you must overload the main method. In the above program both the main methods have same arguments so it won't execute.
    The following program will work though:

    class MultiMain
    {
      public static void main(String[] args)
      {
        main(1);
        main('a');
      }
      public static void main(int i)
      {
        System.out.println("Integer main");
      }
      public static void main(char a)
      {
        System.out.println("Char main");
      }
    }
    In this way you can use multiple mains inside a single class in Java
  • formesush
    formesush
    If we are writing two main a class,how will the compiler know which one to call when it runs??
  • Anoop Kumar
    Anoop Kumar
    formesush
    If we are writing two main a class,how will the compiler know which one to call when it runs??
    It will take only this public static void main(String[] args)
    method signature as starting point....
  • sookie
    sookie
    formesush
    If we are writing two main a class,how will the compiler know which one to call when it runs??
    Compiler never decides run time execution. It just check whether the program written is semantically and syntax wise correct or not. According to Java semantics you cannot have a method with exactly same signature twice right? Hence compiler throws the error.

    i think in this case there is no need to got upto run time execution.
  • Vikash Verma
    Vikash Verma
    #-Link-Snipped-# first of all, your program is syntactically wrong... the signature of main method must be one of the following...​
    public static void main(String[] args)
    public static void main(String... anything)

    you can only overload main method i.e. parameters in the main method must be different,but the program will execute iff one of the above two main method is present...😎
  • Vikash Verma
    Vikash Verma
    #-Link-Snipped-# , two main method with same signature can never exist in a java program, also it is the JVM which always calls the main method and not the java compiler... 😎
  • TaraJava
    TaraJava
    no we cant have multiple main class ,no way
  • Neeraj Sharma
    Neeraj Sharma
    TaraJava
    no we cant have multiple main class ,no way
    You can have it by overloading. Check the above posts..
  • fakirguy
    fakirguy
    I agree with Vikash Verma. It is important to note that the Java compiler will never call the main() method. Java compiler (javac.exe) is not even in the picture when you are executing your program. When you are executing your program, the Java compiler (java.exe) looks for public static void main(String[] args) in the class you ask it to execute.
  • Anoop Kumar
    Anoop Kumar
    fakirguy
    . When you are executing your program, the Java compiler (java.exe) looks for public static void main(String[] args) in the class you ask it to execute.
    the Java compiler (java.exe)
    Please correct here java.exe is JVM invoker which load class file and run it.
    javac.exe (on windows machine) is java compiler invoker.
  • Charan Raj
    Charan Raj

    The answer is Yes, but you should consider the following 3 points. 

    1. No two main method parameter should be the same 

    Eg. public static void main(int i) 

    public static void main(int i, int j) 

    public static void main(double j) 

    public static void main(String[] args) 

    2. Java’s actual main method is the one with (String[] args), So the Actual execution starts from public static void main(String[] args), so the main method with (String[] args) is must in a class unless it is a child class. 

    3. In order for other main methods to execute you need to call them from inside the (String[] args) main method. 

    Here is a detailed video:

    - YouTube

You are reading an archived discussion.

Related Posts

I have a program for reversing a single linked list node *rev( node *head ) { node *next; node *curr = head; node *prev = NULL; while (curr != NULL)...
Living in this era of information technology, to communicate our ideas, thoughts and experiences with others, we have become tremendously dependent on some communication devices and technologies (i.e. mobile phones,...
SCIENTISTS investigates that which already is............​ ​ BUT​ ENGINEERS creats that which has never been....KRAZZY ENGINEERS 😛👍 ​ [DEAR GOD, WHEN I LOSE MY HOPE REMEMBER ME THAT YOUR PLANS...
Check this out this awesome and informational stuff on how to confuse an idiot. Share your opinion -
Hobbies: Net Surfing, Books and Music What I Do: Social Activities, Social Networking and Computer Programming