在阅读Rust Book中有关智能指针.
We could change the definition of Cons to hold references instead, but then we would have to specify lifetime parameters. By specifying lifetime parameters, we would be specifying that every element in the list will live at least as long as the entire list. The borrow checker wouldn’t let us compile let a = Cons(10, &Nil); for example, because the temporary Nil value would be dropped before a could take a reference to it.
rust
1 |
|
复现代码并没有出现错误提示,就有些疑惑.
最后发现是在这个提议1中,将常量表达式提升为静态变量.
相关连接记录
- https://github.com/rust-lang/book/issues/1656
- https://stackoverflow.com/questions/62368330/use-regular-reference-instead-of-box-in-recursive-data-structures/62368584#62368584
- https://stackoverflow.com/questions/50345139/why-can-i-return-a-reference-to-a-local-literal-but-not-a-variable
1. https://github.com/rust-lang/rfcs/blob/master/text/1414-rvalue_static_promotion.md ↩