gpt4 book ai didi

java - 使用多个 int 数组作为参数

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

问题是这样的:我有 3 个 int [] 作为参数,我需要将它们传递给与它们一起使用的函数。args[] 是:

 1: {14,14,17,17,14,12,13,11,12}
2: {74,34,57,67,34,42,53,61,22}
3: {24,24,12,21,29,14,21,17,12}

至于源想法:

public class Main {
public static void main(String[] args) {
System.out.println("amount: " + args.length);
int[] intArray = new int[args.length];
for(int i=0;i<args.length;i++)
intArray[i]=Integer.valueOf(args[i]);
int[] statica= intArray[0];
int[] inserta= intArray[1];
int[] reservea= intArray[2];

GraphicConsts.getSvgStylTotalamount();
InputValues inputValues = new InputValues(statica, inserta, reservea);
inputValues.init();
}

}

输入值:

public class InputValues {

private int[] staticamount;

public int[] insertamount;

private int[] reserveamount;

private int[] totalamount=new int[]{};
private int[] depositDF=new int[]{};
private int[] depositelse=new int[]{};

public InputValues(int statica, int inserta, int reservea) {

// TODO Auto-generated constructor stub
}
public void init() {

// AUTO generated setters und getters

}

整个过程都通过 FOPConverter,但这部分正在工作。如果我像

这样对数组进行硬编码,那么整个事情就会起作用
private int[] staticamount= new int[]{14,14,17,17,14,12,13,11,12};  

但我需要这些作为参数。

有什么想法吗?提前致谢。

最佳答案

如果我理解正确的话,你只想使用 3 个参数,其中每个参数用作列表。好吧,您可以使用 GSON 包并像单个字符串一样传递参数。这是示例:

输入:

arg1:[14,14,17,17,14,12,13,11,12]

arg2:[74,34,57,67,34,42,53,61,22]

arg3:[24,24,12,21,29,14,21,17,12]

import java.lang.reflect.Type;
import com.google.gson.Gson;
import com.google.gson.reflect.TypeToken;
....
public static void main(String[] args) {

....

Type collectionType = new TypeToken<int[]>(){}.getType();

int[] festmengeNew1 = gson.fromJson(args[0], collectionType);
int[] festmengeNew2 = gson.fromJson(args[1], collectionType);
int[] festmengeNew3 = gson.fromJson(args[2], collectionType);
....
}

如您所见,我输入了 3 个字符串参数并转换为 int 列表。假设它会对你有帮助

关于java - 使用多个 int 数组作为参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12969729/

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