gpt4 book ai didi

java - 没有任何数据类型的返回意味着什么?

转载 作者:行者123 更新时间:2023-12-02 20:57:18 26 4
gpt4 key购买 nike

return ; 是什么意思?

据我所知,这意味着返回void

public void method() 
{
System.out.println("here2");
return ;
}

谁能解释一下吗?

最佳答案

这意味着什么也不返回 - 具体来说是 void 。用于从方法中返回。它与返回类型 void 的方法一起使用,如果您想根据某些条件提前从方法返回,例如:

public void method(int parameter)
{
if(parameter < 0)
return;
//otherwise continue with the following.
System.out.println("here2");
}

在当前代码中,您不需要编写return,因为该方法将从最后一行代码正常返回。

Returning a Value from a Method

Any method declared void doesn't return a value. It does not need to contain a return statement, but it may do so. In such a case, a return statement can be used to branch out of a control flow block and exit the method

关于java - 没有任何数据类型的返回意味着什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15195408/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com