gpt4 book ai didi

java - 如何使用其他类的int?

转载 作者:行者123 更新时间:2023-12-01 11:09:10 25 4
gpt4 key购买 nike

这是我的主要方法:

public class Main {

public static void main(String[] args){
Comp.give(f, s);
}
}

这是我的另一个类:

import java.util.Scanner;

public class Comp {
private void look() {
Scanner iscan = new Scanner(System.in);
int f = iscan.nextInt();
int s = iscan.nextInt();
}

public static Object give(int f, int s) {
return f + s;

}
}

我希望能够在 main 方法中使用两个 Ints f 和 s(第一个和第二个)。

如果这是一个愚蠢的问题,我只是希望能够使用 getter/从 main 方法中调用 Give 方法。我该怎么做?

我是编码新手,所以假设我几乎一无所知。解释得很彻底。谢谢!

编辑 - 代码应该采用两个整数并返回总和。

最佳答案

您可以通过将变量 f 和 s 设置为实例变量来做到这一点。您可以通过在 Comp 类中进行这样的设置来完成:

public int f;
public int s;

然后您可以通过在 main 中执行以下操作来引用每个变量:

Comp example = new Comp();
int f = example.f;
int s = example.s;

关于java - 如何使用其他类的int?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32569330/

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