gpt4 book ai didi

types - Impl Add 为类型别名元组 (f64, f64)

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

我有一个自定义类型点

type Point = (f64, f64);

我想将两个 Point 加在一起,但出现此错误

error[E0368]: binary assignment operation `+=` cannot be applied to type `(f64, f64)`
--> src/main.rs:119:21
|
119 | force_map[&body.name] += force;
| ---------------------^^^^^^^^^
| |
| cannot use `+=` on type `(f64, f64)`

当我尝试实现 Add 时,出现了这个错误:

39 | / impl Add for (f64, f64) {
40 | | #[inline(always)]
41 | | fn add(self, other: (f64, f64)) -> (f64, f64) {
42 | | // Probably it will be optimized to not actually copy self and rhs for each call !
43 | | (self.0 + other.0, self.1 + other.1);
44 | | }
45 | | }
| |_^ impl doesn't use types inside crate
|
= note: the impl does not reference any types defined in this crate
= note: define and implement a trait or new type instead

是否可以为一个类型实现Add?我应该改用 struct 吗?

最佳答案

不,您没有Point 类型。遗憾的是,type 关键字不会创建新类型,而只会为现有类型创建新名称(别名)。

要创建类型,请使用:

struct Point(f64, f64);

关于types - Impl Add 为类型别名元组 (f64, f64),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47992959/

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