Can a main method in Java return something?

前端 未结 6 1927
情话喂你
情话喂你 2020-11-29 04:58

I went through an interview recently and they ask me two questions in core Java.

Q 1.

Can we write a java class with:

public s         


        
6条回答
  •  情歌与酒
    2020-11-29 05:42

    One can not return a value from a Java main function. Programs can however return a status code.

    Try the following to exit with an int status in Java System.exit(45)

提交回复
热议问题