如何使用Java中方法的返回值?

问题描述 投票:0回答:4

我想通过将成员函数的返回值存储到变量中然后使用它来使用它。例如:

public int give_value(int x,int y) {
  int a=0,b=0,c;
  c=a+b;
  return c;
}

public int sum(int c){ 
  System.out.println("sum="+c); 
}              

public static void main(String[] args){
    obj1.give_value(5,6);
    obj2.sum(..??..);  //what to write here so that i can use value of return c 
                       //in obj2.sum
}
java class object return member
4个回答
4
投票

尝试

int value = obj1.give_value(5,6);
obj2.sum(value);

obj2.sum(obj1.give_value(5,6));

0
投票

give_value
方法返回一个整数值,因此您可以将该整数值存储在变量中,例如:

int returnedValueFromMethod = obj1.give_value(5,6);//assuming you created obj1
obj2.sum(returnedValueFromMethod );//passing the same to sum method on obj2 provided you have valid instance of obj2

或者,如果您想压缩代码(我不喜欢),您可以在一行中完成,例如:

obj2.sum(obj1.give_value(5,6));

0
投票

这就是您所需要的:

 public int give_value(int x,int y){
       int a=0,b=0,c;
       c=a+b;
       return c;
    }
    public int sum(int c){ 
       System.out.println("sum="+c); 
    }              
    public static void main(String[] args){
       obj2.sum(obj1.give_value(5,6));
    }

0
投票

代码是错误的,它应该以包含递归的 f 字符串格式构造

© www.soinside.com 2019 - 2024. All rights reserved.