gpt4 book ai didi

Java 泛型类型

转载 作者:行者123 更新时间:2023-11-29 07:45:46 25 4
gpt4 key购买 nike

<分区>

此代码无法编译:

public class Calculadora<T> {
T suma(T a, T b) {
return (a + b);
}
}

Calculadora<Integer> c = new Calculadora<Integer>();
System.out.println(c.suma(3, 5));

它给了我错误

The operator + is undefined for the argument type(s) T, T

我该如何解决?

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