Can a main() method of class be invoked in another class in java
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
If you want to call the main method of another class you can do it this way assuming I understand the question.
|
||||
|
|
|
Yes as long as it is public and you pass the correct args. See this link for more information. http://www.codestyle.org/java/faq-CommandLine.shtml#mainhost |
|||
|
|
|
yes, but only if main is declared public |
|||||
|
|
Sure. Here's a completely silly program that demonstrates calling
|
|||
|
|