- 5
Which method is the starting point all java programs?
3 Réponses
0
well, usual java program start with a static method called main with this prototype:
public static void main(String args[]){
...
}
- 2
thank you
- 2
Main is the answer of this question (Which method is the starting point all java programs?
)