gpt4 book ai didi

java - 在编程中使用 Return

转载 作者:太空宇宙 更新时间:2023-11-04 11:35:57 26 4
gpt4 key购买 nike

我对 return 关键字感到困惑。我知道这些用法:

A.当我们必须打印一些东西时

System.out.println(functionname());

B.当我们必须将函数的输出复制到某些内容时

int c=function(3);

还有其他用途吗?

<小时/>

关于此任务,我还有另一个问题:

Create a class person having two instance fields- height and weight. Include one method update_fields which accepts object of the same class and returns the object of the class after doubling the height and weight of the passed object.

在更新字段方法中,当objectname.methodname();调用该方法时,为什么我们需要传递对象作为参数??值加倍后return有什么用?

class Person
{
int ht;
int wt;
Person update_fields(Person p1)
{

p1.ht*=2;
p1.wt*=2;
return p1 ;
}
}

我觉得这个问题应该只是将值加倍而不接受参数并返回任何内容。

 void update_fields()
{

p1.ht*=2;
p1.wt*=2;

}

最佳答案

在 Java 中,您创建一个由交互代码片段组成的网络。让一个方法将值传递给另一个方法的最相关技术是使用return。它允许一个方法将计算结果或变量访问传递给调用方法。

关于java - 在编程中使用 Return,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43279444/

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