gpt4 book ai didi

Kotlin : Interface Queue does not have constructors

转载 作者:IT老高 更新时间:2023-10-28 13:33:32 24 4
gpt4 key购买 nike

我正在尝试实例化 Queue 的对象使用下面的代码

var queue: Queue<Int> = Queue()

但我明白了

Interface Queue does not have constructors

不知道发生了什么,我在搜索时发现了 link.

但我什么都不懂。请帮忙。

最佳答案

Queueinterface .所以你不能实例化一个接口(interface),你必须实现它或者实例化一个实现它的类。

例如,你可以做 var queue: Queue<Int> = ArrayDeque<Int>() . ArrayDeque实现 Queue .

关于 Kotlin : Interface Queue does not have constructors,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44390207/

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