gpt4 book ai didi

java - 对参数具有特定约束的通用函数

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

我希望创建一个函数 f,它获取一个名为 n 的参数,类型为 Number .但是我还想指定 n 必须是 Comparable (AtomicIntegerAtomicLong 不是)。我该如何编写这个函数?

我试过这个:public static <T extends Number, Comparable<T>> void f(T n)但这没有用。我该如何解决这个问题?

最佳答案

使用&代替逗号:

public static <T extends Number & Comparable<T>> void f(T n)

关于java - 对参数具有特定约束的通用函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31663349/

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