- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的程序使用变量的内存地址作为唯一标识符。我知道这非常丑陋,但它是一种获取唯一标识符的非常轻量级的方法。 此模式仅在我将这些变量设为静态时有效,这样它们的唯一 ID(即地址)“永远”存在这意味着我有几个函数需要使用 'static
进行引用> 生命周期。
我正在使用 cortex-m crate它提供了一种将处理器置于允许函数在无中断临界区中运行的状态的方法。这是通过一个函数完成的,该函数将调用包装到需要在关键部分使用适当的汇编调用执行的函数。
在这个人为设计的示例中,包装函数称为 run_in_special_state
。我需要在特殊状态下执行 foo
方法。但是,它需要一个'static Contrived
。这是一个说明错误的示例:
fn foo(_: &'static Contrived) {}
fn run_in_special_state<F, R>(f: F) -> R
where
F: FnOnce() -> R,
{
// Some stuff happens before the function
let r = f();
// Some stuff happens after the function
r
}
struct Contrived {
value: u32,
}
impl Contrived {
fn func(&'static mut self) {
run_in_special_state(|| foo(self));
self.value = 6;
}
}
static mut INSTANCE: Contrived = Contrived { value: 4 };
fn main() {
unsafe { INSTANCE.func() };
}
以下是您在 playground 中运行它时会得到的结果:
error[E0373]: closure may outlive the current function, but it borrows `self`, which is owned by the current function
--> src/main.rs:19:30
|
19 | run_in_special_state(|| foo(self));
| ^^ ---- `self` is borrowed here
| |
| may outlive borrowed value `self`
help: to force the closure to take ownership of `self` (and any other referenced variables), use the `move` keyword
|
19 | run_in_special_state(move || foo(self));
| ^^^^^^^
我知道 FnOnce
将在 run_in_special_state
退出之前被调用。我相信这也意味着闭包不会超过当前函数 (func
?),因为它(闭包)将在当前函数(func
) 退出。我如何将此信息传达给借阅检查员?这里还有其他事情吗?我注意到,如果我放弃 foo
上的 'static
要求,错误就会消失。
我无法执行建议的修复,因为我需要在调用 run_in_special_state
之后使用 self
。
最佳答案
这些函数的签名:
fn foo(_: &'static Contrived)
fn func (&'static mut self)
需要在整个程序的持续时间内借用它们的值的引用,而您需要足够长的借用它们的值的引用。
删除'static
,程序将编译:
fn foo(_: &Contrived) {}
fn run_in_special_state<F, R>(f: F) -> R
where
F: FnOnce() -> R,
{
// Some stuff happens before the function
let r = f();
// Some stuff happens after the function
r
}
struct Contrived {
value: u32,
}
impl Contrived {
fn func(&mut self) {
run_in_special_state(|| foo(self));
self.value = 6;
}
}
static mut INSTANCE: Contrived = Contrived { value: 4 };
fn main() {
unsafe { INSTANCE.func() };
}
&'static T
不仅仅是一个变量的地址,它还具有额外的语义。如果你想将它用作唯一标识符,你可能最好创建一个类型,它只保留地址的唯一性并且不借用值:
mod key {
use super::Contrived;
#[derive(Debug, Hash)]
pub struct ContrivedId(usize);
impl ContrivedId {
pub fn new(r: &'static Contrived) -> Self {
ContrivedId(r as *const _ as usize)
}
}
}
use key::ContrivedId;
fn foo(_: ContrivedId) {}
fn run_in_special_state<F, R>(f: F) -> R
where
F: FnOnce() -> R,
{
// Some stuff happens before the function
let r = f();
// Some stuff happens after the function
r
}
pub struct Contrived {
value: u32,
}
impl Contrived {
fn func(&mut self, id: ContrivedId) {
run_in_special_state(|| foo(id));
self.value = 6;
}
}
static mut INSTANCE: Contrived = Contrived { value: 4 };
fn main() {
unsafe {
let id = ContrivedId::new(&INSTANCE);
INSTANCE.func(id)
};
}
关于rust - 当在闭包中借用 self 时,使用静态生命周期会触发 "closure may outlive function",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48657718/
让我们写一个简单的类在我的脑海中解释: class SomeClass { var happyToUsed = 10 } 并创建一个对象 let someObject = SomeClass(
采用 self 的方法与采用 &self 甚至 &mut self 的方法有什么区别? 例如 impl SomeStruct { fn example1(self) { } fn ex
请观察以下代码(Win10上的python 3.6,PyCharm),函数thread0(self)作为线程成功启动,但是 thread1(self)似乎与thread0(self)不同已设置。 se
backbone.js 开始于: //Establish the root object, `window` (`self`) in the browser, or `global` on the s
做的事: self = self.init; return self; 在 Objective-C 中具有相同的效果: self.init() 快速? 例如,在这种情况下: else if([form
我查看了关于堆栈溢出的一些关于使用[weak self]和[unowned self]的问题的评论。我需要确保我理解正确。 我正在使用最新的 Xcode - Xcode 13.4,最新的 macOS
我面临在以下模型类代码中的 self.init 调用或分配给 self 之前使用 self 的错误tableview单元格项目,它发生在我尝试获取表格单元格项目的文档ID之后。 应该做什么?请推荐。
晚上好。 我对在 Swift 中转义(异步)闭包有疑问,我想知道哪种方法是解决它的最佳方法。 有一个示例函数。 func exampleFunction() { functionWithEsca
我需要在内心深处保持坚强的自我。 我知道声明[weak self]就够了外封闭仅一次。 但是guard let self = self else { return }呢? ,是否也足以为外部闭包声明一
代码 use std::{ fs::self, io::self, }; fn rmdir(path: impl AsRef) -> io::Result { fs::remo
我检查了共享相同主题的问题,但没有一个解决我遇到的这种奇怪行为: 说我有一个简单的老学校struct : struct Person { var name: String var age:
我应该解释为什么我的问题不是重复的:TypeError: can only concatenate list (not “str”) to list ...所以它不是重复的,因为该帖子处理代码中出现的
我有一个 trait,它接受一个类型参数,我想说实现这个 trait 的对象也会符合这个类型参数(使用泛型,为了 Java 的兼容性) 以下代码: trait HandleOwner[SELF
这个问题在这里已经有了答案: Why would a JavaScript variable start with a dollar sign? [duplicate] (16 个答案) 关闭 8
我总是找到一些类似的代码newPromise.promiseDispatch.apply(newPromise, message),我不明白为什么不使用newPromise.promiseDispat
我看到类似的模式 def __init__(self, x, y, z): ... self.x = x self.y = y self.z = z ... 非
mysql查询示例: SELECT a1.* FROM agreement a1 LEFT JOIN agreement a2 on a1.agreementType = a2.agreementTy
self.delegate = self; 这样做有什么问题吗?正确的做法是什么? 谢谢,尼尔。 代码: (UITextField*)initWith:(id)sender:(float)X:(flo
为什么要声明self在类中需要的结构中不需要?我不知道是否还有其他例子说明了这种情况,但在转义闭包的情况下,确实如此。如果闭包是非可选的(因此是非转义的),则不需要声明 self在两者中的任何一个。
这个问题已经有答案了: What does the ampersand (&) before `self` mean in Rust? (1 个回答) 已关闭去年。 我不清楚 self 之间有什么区别
我是一名优秀的程序员,十分优秀!