gpt4 book ai didi

java - 集合中类的访问方法

转载 作者:行者123 更新时间:2023-12-01 16:19:43 27 4
gpt4 key购买 nike

我有一个名为TestClass的类,我需要访问此类的函数,代码如下:


public class Demo {
public static Boolean callFunc(Collection<TestClass> arr) {

// 这是我需要访问的地方
return true;
}

public static void main(String[] args) throws Exception {

ArrayList<TestClass> arr = new ArrayList<TestClass>();
arr.add(new TestClass(100, 200));
arr.add(new TestClass(300, 400));
arr.add(new TestClass(400, 500));

System.out.println(Demo.callFunc(arr));
}
}

class TestClass {
private int start, end;

public TestClass(int start, int end) {
this.start = start;
this.end = end;
}

public int getStart() {
return this.start;
}

public int getEnd() {
return this.end;
}
}


任何帮助或建议将不胜感激。

最佳答案

public static Boolean callFunc(Collection<TestClass> arr) {
// 可以这样访问
for (TestClass x: arr) {
int start = x.getStart();
int end = x.getEnd();
}

return true;
}

关于java - 集合中类的访问方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62307096/

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