我只是一个初学的Java程序员,我只是想知道如果用户输入为false,是否有办法结束程序。这是一个例子:
if (age > 13) {
System.out.println("You are eligible for this site, you may proceed. ");
} else {
// End program here if statement = false
}
(如果你不介意,请回答代码。)
答案 0 :(得分:5)
if (age > 13) {
System.out.println("You are eligible for this site, you may proceed. ");
}else{
System.exit(0);
}
这应该结束了!
答案 1 :(得分:1)
您可以使用System.exit()
退出程序。
有关详细信息,请参阅http://docs.oracle.com/javase/7/docs/api/java/lang/System.html。
答案 2 :(得分:1)
这将退出JVM。
System.exit(-1); // or any other status
如果这是主要方法,你也可以简单地从它返回(假如你还没有开始一个线程):
return;
答案 3 :(得分:1)
你可以这样结束:
if (age > 13) {
System.out.println("You are eligible for this site, you may proceed. ");
}else{
System.exit(0); //code to end program
}
答案 4 :(得分:0)
如果你在主要上写回来;
答案 5 :(得分:0)
如果这是在main()方法
中只需使用return
如果这是在另一个函数中,则返回主页,如boolean
然后return