gpt4 book ai didi

java - java 中 Kotlin 中 的等价物是什么?

转载 作者:行者123 更新时间:2023-12-02 14:38:20 25 4
gpt4 key购买 nike

这是我的方法

void login(Event<?, ?> event);我想知道 Kotlin 中应该如何

最佳答案

在 Kotlin 中通配符运算符是 * 。它指示编译器它是未知的,但一旦知道,就不会有其他类型的其他对象。

更换

Java -> Kotlin

  • <?> -> <*>
  • Object -> Any?
  • <? extends A> -> <out A?>
  • <? super A> -> <in A?>

Here question mark (?) above means the field can be nullable, in java null and non-null are same but in Kotlin to accept null we need to explicitly mark it nullable.

关于java - java 中 Kotlin 中 <?,?> 的等价物是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61813738/

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