- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试创建一个函数,它将两个迭代器作为参数并通过引用迭代项目。每个 Iterator
项都应该实现 PartialEq
。
我的第一次尝试是:
fn compute<T: Iterator>(first: T, second: T, len: usize) -> usize
where
T::Item: std::cmp::PartialEq,
{
// ...
}
这编译但迭代(据我所知)不是通过引用而是通过值迭代,编译器在迭代时提示移动。
我的第二次尝试是这样的:
fn compute<'a, T>(first: T, second: T, len: usize) -> usize
where
T: Iterator<Item = &'a std::cmp::PartialEq>,
{
//...
}
导致编译错误:
error[E0393]: the type parameter `Rhs` must be explicitly specified
--> src/main.rs:3:28
|
3 | T: Iterator<Item = &'a std::cmp::PartialEq>,
| ^^^^^^^^^^^^^^^^^^^ missing reference to `Rhs`
|
= note: because of the default `Self` reference, type parameters must be specified on object types
编译器在这里提到的 Rhs
(右侧?)是什么意思?为什么我需要引用它?如何将基于有界引用的 Iterator
传递给函数?
最佳答案
PartialEq
是允许您比较两个值的特征。这两个值不必必须是同一类型! generic type Rhs
用于指定我们要比较的类型。默认情况下,Rhs
的值与被比较的类型相同:
pub trait PartialEq<Rhs = Self>
where
Rhs: ?Sized,
在这种情况下,您实际上是在请求迭代器值是特征对象 &PartialEq
。如错误消息所述:
because of the default
Self
reference, type parameters must be specified on object types
我们可以指定它:
fn compute<'a, T>(first: T, second: T, len: usize) -> usize
where
T: Iterator<Item = &'a std::cmp::PartialEq<i32>>,
或
fn compute<'a, T: 'a>(first: T, second: T, len: usize) -> usize
where
T: Iterator<Item = &'a std::cmp::PartialEq<&'a T>>,
but iterates (as far as I understand) not by reference but by value
它很可能通过引用进行迭代。请记住,T
是任何 类型,i32
、&i32
和&mut i32
是所有类型。您的第一个示例是我将使用的签名的公式:
fn compute<T: Iterator>(first: T, second: T, len: usize) -> usize
where
T::Item: std::cmp::PartialEq,
{
42
}
fn main() {
let a = [1, 2, 3];
let b = [4, 5, 6];
compute(a.iter(), b.iter(), 1);
compute(a.iter(), b.iter(), 2);
compute(a.iter(), b.iter(), 3);
}
关于iterator - Rhs 在有关 PartialEq 的编译器错误消息中指的是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45764578/
class test { public: int i = 0; test& operator+=(const test &rhs) { i += rhs.i;
我有一个数据框和一个存储在变量中的公式: > d f update(f, .~.-foo) Error in terms.formula(tmp, simplify = TRUE) :
我有一个这样的类型类: class (Coercible a b) => Foo a b | a -> b 我想声明以下 Generic 的实例: data Thing a where Thi
我在数据框 Data1 中有一个包含 100 列的列表。这些变量之一是因变量。其他人是预测者。 我需要将 99 个预测变量提取到一个列中(比如 varlist),以便在下面的等式中使用 equatio
我不明白为什么不能在运算符的 RHS 上使用初始化列表。考虑: class foo { }; struct bar { template bar(T const&...) { } };
我不明白为什么不能在运算符的 RHS 上使用初始化列表。考虑: class foo { }; struct bar { template bar(T const&...) { } };
这是一个赋值运算符。 &rhs != this 令人困惑。我的问题:rhs 是 Message 类型的引用。 &rhs 是什么意思? & 做什么(引用的内存地址?)?另一个问题是关于 return *
我不明白为什么不能在运算符的 RHS 上使用初始化列表。考虑: class foo { }; struct bar { template bar(T const&...) { } };
我不明白为什么不能在运算符的 RHS 上使用初始化列表。考虑: class foo { }; struct bar { template bar(T const&...) { } };
我不明白为什么不能在运算符的 RHS 上使用初始化列表。考虑: class foo { }; struct bar { template bar(T const&...) { } };
在这里,我理解 rhs 表示右手边,但我不明白编译器如何理解“rhs”指的是右手边。有人可以解释在什么情况下需要这种重载吗? MyArray& operator=(const MyArray& rhs
我来自 C++ 世界,我找不到以下 Java 替代方案(如果有的话): struct SomeStruct { SomeStruct(){} SomeStruct(const Some
我不明白为什么不能在运算符的 RHS 上使用初始化列表。考虑: class foo { }; struct bar { template bar(T const&...) { } };
这个问题在这里已经有了答案: Transpose / reshape dataframe without "timevar" from long to wide format (8 个回答) 4年前关
我可以构建一个公式,从公式中术语的字符版本开始,我想要做什么,但我在从公式对象开始时遇到了困难: form1 attr( terms(form1), "term.labels") [1] "A" "
在类的赋值运算符中,你通常需要检查被赋值的对象是否是调用对象,这样你就不会搞砸了: Class& Class::operator=(const Class& rhs) { if (this !
这个问题在这里已经有了答案: Rvalue Reference is Treated as an Lvalue? (4 个回答) 去年关闭。 在有效的现代 C++ class Widget { pub
在 shell 脚本中,将一个变量赋值给另一个变量时这两者有什么区别: a=$b 和 a="$b" 我什么时候应该使用一个而不是另一个? 最佳答案 我觉得这里没有太大区别。是的,建议在引用变量时用双引
Eclipse在下面的声明中报类型安全警告是有原因的吗? Map>> mapX = new HashMap(); 我知道所有 mapX 用法都是强类型的,但是 java 泛型坚持提供 HashMap
我想确定一下我的理解是否正确。 我正在研究这段代码。 #include using namespace std; // modified largely from // http://d.haten
我是一名优秀的程序员,十分优秀!