众所周知,return 只能用在有返回类型的函数中,但是有返回值的函数一定要有return吗?return都可以用在函数的哪些地方呢?这是本文需要讨论的问题。
例一:
class test {
public String test() {
if(true){
return "";
}
else{
[ 查看全文 ]