gpt4 book ai didi

java构建具有特定结构的列表的问题

转载 作者:太空宇宙 更新时间:2023-11-04 11:31:01 24 4
gpt4 key购买 nike

我对 Java 还很陌生,有一个小问题。我有一个返回 String 的函数和一个返回 int 的函数,我必须将它们放入一个类似于 ({String, int},{String, int}) 的列表中。我怎样才能最好地做到这一点?

最佳答案

如果您的问题是 @duffymo 在他的评论中所描述的内容,那么我认为 Java 不会这样做。但是您可以通过创建一个具有两个字段的类来彻底解决这个问题。

private String methodForString() {
String result = new String();
// ... your code which manipulates result
return result;
}

private int methodForInt() {
int result = 0;
// ... your code which manipulates result
return result;
}

class MyClass {
String returnString;
int returnInt;

public String getReturnString() {
return returnString;
}

public void setReturnString(String returnString) {
this.returnString = returnString;
}

public int getReturnInt() {
return returnInt;
}

public void setReturnInt(int returnInt) {
this.returnInt = returnInt;
}
}

private void initializingMethod() {
List<MyClass> list = new ArrayList<>();
int numberItems = 100;// this represents the number of items you want to
// put in your list
for (int i = 0; i < numberItems; i++) {
MyClass myClass = new MyClass();
myClass.setReturnInt(methodForInt());
myClass.setReturnString(methodForString());
list.add(myClass);
}
}

关于java构建具有特定结构的列表的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43801001/

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