Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to set default main class in java?

Tags:

java

netbeans

I have 2 classes within same package. Both classes have main method in them. Now I want to build a jar file. I want to build 2 jar files which use different main functions as default main.

eg

class A {   public static void main(String args[])   {     //do something   } }  class B {   public static void main(String args[])   {     //do something   } } 

How do I do it in NetBeans IDE?

I found the answer. U can do it easily in netbeans: 1)right click on project >properties > run > select the class frm and drop down list. So simple in netbeans. Netbeans rocks!

like image 415
user189352 Avatar asked Oct 28 '09 04:10

user189352


People also ask

Can we declare class as default in Java?

No, we cannot declare a top-level class as private or protected. It can be either public or default (no modifier). If it does not have a modifier, it is supposed to have a default access.

Can we rename the main class in Java?

java, there is no rename option.


1 Answers

Right-click the project node in the Projects window and choose Project Properties. then find run, there you can setup your main class,, **actually got it from netbeans default help

like image 58
bos_ahonk Avatar answered Sep 28 '22 06:09

bos_ahonk