gpt4 book ai didi

generics - 为 int 寻找特征 core::cmp::PartialEq 的实现

转载 作者:行者123 更新时间:2023-11-29 08:22:11 26 4
gpt4 key购买 nike

我想在一个泛型类中使用 int,它需要它的泛型类型来实现 core::cmp::PartialEq 特性。我知道 int 正在实现它,因为我可以做 4 != 5。问题是编译器无法识别并引发以下错误:

error: unable to infer enough type information to locate the impl of the trait core::cmp::PartialEq for the type <generic integer #2>; type annotations required src/binary_tree.rs:80 let tree = Node::new_node(box 10);

src/binary_tree.rs:80:13: 80:27 note: the trait core::cmp::PartialEq must be implemented because it is required by Node<T>::new_node

你能帮我找到 partialeq for int 的实现吗?

最佳答案

10 不是 int 文字。它是一个通用的整型字面量——它可能是inti8i16i32i64 uintu8u16u32u64。它将被推断出。

在这种情况下,您没有给它任何信息来推断它,因此它无法确定您的号码是什么类型,因此“需要类型注释”。如果你希望它是一个int,写10i

关于generics - 为 int 寻找特征 core::cmp::PartialEq 的实现,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26854299/

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