Can the main() method be specified as private or protected?
Will it compile?
Will it run?
|
Yes
Yes
Yes, but it can not be taken as entry point of your application. It will run if it is invoked from somewhere else. Give it a try:
In this code, the protected method can't be used as entry point of the app, but, it can be invoked from the class Private methods can't be invoked but from the class it self. So you'll need something like:
To call |
|||||||
|
|
You can have as many classes with whatever main methods as you want. They just can't be an entry point unless they match the signature. |
|||
|
|
|
Yes, it will compile. But it wil not run as entry point of the program. Java looks for the public main method signature. If any of the modifiers is different, then it wil assume it as some other method. run and test 4 urself. :) |
|||
|
|