gpt4 book ai didi

Java方法组合数组列表: variable number of arguments

转载 作者:行者123 更新时间:2023-12-01 21:33:52 24 4
gpt4 key购买 nike

组合数组列表的方法:可变数量的数组。方法签名

public static <T> T[] combine(T[] ... a) {
...
}

byte[] a = [];
byte[] b = [];
byte[] c = [];
combine(a, b, c); // compiling error

为可变数量的数组定义方法签名的正确方法是什么。谢谢。

最佳答案

这是因为您无法用 T 替换原始类型。

尝试使用包装类Byte:

public static void main(String[] args) {
Byte[] a = new Byte[]{0x0};
Byte[] b = a;
Byte[] c = a;
combine(a, b, c);
}
public static <T> T[] combine(T[] ... a) {
//do your magic here
}

当然,这段代码不会组合数组,但方法调用会编译。

关于Java方法组合数组列表: variable number of arguments,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37213101/

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