You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

399 lines
69 KiB

4 weeks ago
<!DOCTYPE HTML>
<html lang="zh-CN" class="light" dir="ltr">
<head>
<!-- Book generated using mdBook -->
<meta charset="UTF-8">
<title>闭包碰到特征对象-01 - Rust语言圣经(Rust Course)</title>
<!-- Custom HTML head -->
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="theme-color" content="#ffffff">
<link rel="icon" href="../../../favicon.svg">
<link rel="shortcut icon" href="../../../favicon.png">
<link rel="stylesheet" href="../../../css/variables.css">
<link rel="stylesheet" href="../../../css/general.css">
<link rel="stylesheet" href="../../../css/chrome.css">
<link rel="stylesheet" href="../../../css/print.css" media="print">
<!-- Fonts -->
<link rel="stylesheet" href="../../../FontAwesome/css/font-awesome.css">
<link rel="stylesheet" href="../../../fonts/fonts.css">
<!-- Highlight.js Stylesheets -->
<link rel="stylesheet" href="../../../highlight.css">
<link rel="stylesheet" href="../../../tomorrow-night.css">
<link rel="stylesheet" href="../../../ayu-highlight.css">
<!-- Custom theme stylesheets -->
<link rel="stylesheet" href="../../../theme/style.css">
</head>
<body class="sidebar-visible no-js">
<div id="body-container">
<!-- Provide site root to javascript -->
<script>
var path_to_root = "../../../";
var default_theme = window.matchMedia("(prefers-color-scheme: dark)").matches ? "navy" : "light";
</script>
<!-- Work around some values being stored in localStorage wrapped in quotes -->
<script>
try {
var theme = localStorage.getItem('mdbook-theme');
var sidebar = localStorage.getItem('mdbook-sidebar');
if (theme.startsWith('"') && theme.endsWith('"')) {
localStorage.setItem('mdbook-theme', theme.slice(1, theme.length - 1));
}
if (sidebar.startsWith('"') && sidebar.endsWith('"')) {
localStorage.setItem('mdbook-sidebar', sidebar.slice(1, sidebar.length - 1));
}
} catch (e) { }
</script>
<!-- Set the theme before any content is loaded, prevents flash -->
<script>
var theme;
try { theme = localStorage.getItem('mdbook-theme'); } catch(e) { }
if (theme === null || theme === undefined) { theme = default_theme; }
var html = document.querySelector('html');
html.classList.remove('light')
html.classList.add(theme);
var body = document.querySelector('body');
body.classList.remove('no-js')
body.classList.add('js');
</script>
<input type="checkbox" id="sidebar-toggle-anchor" class="hidden">
<!-- Hide / unhide sidebar before it is displayed -->
<script>
var body = document.querySelector('body');
var sidebar = null;
var sidebar_toggle = document.getElementById("sidebar-toggle-anchor");
if (document.body.clientWidth >= 1080) {
try { sidebar = localStorage.getItem('mdbook-sidebar'); } catch(e) { }
sidebar = sidebar || 'visible';
} else {
sidebar = 'hidden';
}
sidebar_toggle.checked = sidebar === 'visible';
body.classList.remove('sidebar-visible');
body.classList.add("sidebar-" + sidebar);
</script>
<nav id="sidebar" class="sidebar" aria-label="Table of contents">
<div class="sidebar-scrollbox">
<ol class="chapter"><li class="chapter-item affix "><a href="../../../about-book.html">关于本书</a></li><li class="chapter-item affix "><a href="../../../into-rust.html">进入 Rust 编程世界</a></li><li class="chapter-item affix "><a href="../../../first-try/sth-you-should-not-do.html">避免从入门到放弃</a></li><li class="chapter-item affix "><a href="../../../community.html">社区和锈书</a></li><li class="spacer"></li><li class="chapter-item affix "><a href="../../../some-thoughts.html">Xobserve: 一切皆可观测</a></li><li class="chapter-item affix "><a href="../../../beat-ai.html">BeatAI: 工程师 AI 入门圣经</a></li><li class="chapter-item affix "><li class="part-title">Rust 语言基础学习</li><li class="spacer"></li><li class="chapter-item "><a href="../../../first-try/intro.html"><strong aria-hidden="true">1.</strong> 寻找牛刀,以便小试</a><a class="toggle"><div></div></a></li><li><ol class="section"><li class="chapter-item "><a href="../../../first-try/installation.html"><strong aria-hidden="true">1.1.</strong> 安装 Rust 环境</a></li><li class="chapter-item "><a href="../../../first-try/editor.html"><strong aria-hidden="true">1.2.</strong> 墙推 VSCode!</a></li><li class="chapter-item "><a href="../../../first-try/cargo.html"><strong aria-hidden="true">1.3.</strong> 认识 Cargo</a></li><li class="chapter-item "><a href="../../../first-try/hello-world.html"><strong aria-hidden="true">1.4.</strong> 不仅仅是 Hello world</a></li><li class="chapter-item "><a href="../../../first-try/slowly-downloading.html"><strong aria-hidden="true">1.5.</strong> 下载依赖太慢了?</a></li></ol></li><li class="chapter-item "><a href="../../../basic/intro.html"><strong aria-hidden="true">2.</strong> Rust 基础入门</a><a class="toggle"><div></div></a></li><li><ol class="section"><li class="chapter-item "><a href="../../../basic/variable.html"><strong aria-hidden="true">2.1.</strong> 变量绑定与解构</a></li><li class="chapter-item "><a href="../../../basic/base-type/index.html"><strong aria-hidden="true">2.2.</strong> 基本类型</a><a class="toggle"><div></div></a></li><li><ol class="section"><li class="chapter-item "><a href="../../../basic/base-type/numbers.html"><strong aria-hidden="true">2.2.1.</strong> 数值类型</a></li><li class="chapter-item "><a href="../../../basic/base-type/char-bool.html"><strong aria-hidden="true">2.2.2.</strong> 字符、布尔、单元类型</a></li><li class="chapter-item "><a href="../../../basic/base-type/statement-expression.html"><strong aria-hidden="true">2.2.3.</strong> 语句与表达式</a></li><li class="chapter-item "><a href="../../../basic/base-type/function.html"><strong aria-hidden="true">2.2.4.</strong> 函数</a></li></ol></li><li class="chapter-item "><a href="../../../basic/ownership/index.html"><strong aria-hidden="true">2.3.</strong> 所有权和借用</a><a class="toggle"><div></div></a></li><li><ol class="section"><li class="chapter-item "><a href="../../../basic/ownership/ownership.html"><strong aria-hidden="true">2.3.1.</strong> 所有权</a></li><li class="chapter-item "><a href="../../../basic/ownership/borrowing.html"><strong aria-hidden="true">2.3.2.</strong> 引用与借用</a></li></ol></li><li class="chapter-item "><a href="../../../basic/compound-type/intro.html"><strong aria-hidden="true">2.4.</strong> 复合类型</a><a class="toggle"><div></div></a></li><li><ol class="section"><li class="chapter-item "><a href="../../../basic/compound-type/string-slice.html"><strong aria-hidden="true">2.4.1.</strong> 字符串与切片</a></li><li class="chapter-item "><a href="../../../basic/compound-type/tuple.html"><strong aria-hidden="true">2.4.2.</strong> 元组</a></li><li class="chapter-item "><a href="../../../basic/compound-type/struct.html"><strong aria-hidden="true">2.4.3.</strong> 结构体</a></li><li class="chapter-item "><a href="../../../basic/compound-type/enum.html"><strong aria-hidden="true">2.4.4.</strong> 枚举</a></li><li class="chapter-item "><a href="../../../basi
</div>
<div id="sidebar-resize-handle" class="sidebar-resize-handle">
<div class="sidebar-resize-indicator"></div>
</div>
</nav>
<!-- Track and set sidebar scroll position -->
<script>
var sidebarScrollbox = document.querySelector('#sidebar .sidebar-scrollbox');
sidebarScrollbox.addEventListener('click', function(e) {
if (e.target.tagName === 'A') {
sessionStorage.setItem('sidebar-scroll', sidebarScrollbox.scrollTop);
}
}, { passive: true });
var sidebarScrollTop = sessionStorage.getItem('sidebar-scroll');
sessionStorage.removeItem('sidebar-scroll');
if (sidebarScrollTop) {
// preserve sidebar scroll position when navigating via links within sidebar
sidebarScrollbox.scrollTop = sidebarScrollTop;
} else {
// scroll sidebar to current active section when navigating via "next/previous chapter" buttons
var activeSection = document.querySelector('#sidebar .active');
if (activeSection) {
activeSection.scrollIntoView({ block: 'center' });
}
}
</script>
<div id="page-wrapper" class="page-wrapper">
<div class="page">
<div id="menu-bar-hover-placeholder"></div>
<div id="menu-bar" class="menu-bar sticky">
<div class="left-buttons">
<label id="sidebar-toggle" class="icon-button" for="sidebar-toggle-anchor" title="Toggle Table of Contents" aria-label="Toggle Table of Contents" aria-controls="sidebar">
<i class="fa fa-bars"></i>
</label>
<button id="theme-toggle" class="icon-button" type="button" title="Change theme" aria-label="Change theme" aria-haspopup="true" aria-expanded="false" aria-controls="theme-list">
<i class="fa fa-paint-brush"></i>
</button>
<ul id="theme-list" class="theme-popup" aria-label="Themes" role="menu">
<li role="none"><button role="menuitem" class="theme" id="light">Light</button></li>
<li role="none"><button role="menuitem" class="theme" id="rust">Rust</button></li>
<li role="none"><button role="menuitem" class="theme" id="coal">Coal</button></li>
<li role="none"><button role="menuitem" class="theme" id="navy">Navy</button></li>
<li role="none"><button role="menuitem" class="theme" id="ayu">Ayu</button></li>
</ul>
<button id="search-toggle" class="icon-button" type="button" title="Search. (Shortkey: s)" aria-label="Toggle Searchbar" aria-expanded="false" aria-keyshortcuts="S" aria-controls="searchbar">
<i class="fa fa-search"></i>
</button>
</div>
<h1 class="menu-title">Rust语言圣经(Rust Course)</h1>
<div class="right-buttons">
<a href="../../../print.html" title="Print this book" aria-label="Print this book">
<i id="print-button" class="fa fa-print"></i>
</a>
<a href="https://github.com/sunface/rust-course" title="Git repository" aria-label="Git repository">
<i id="git-repository-button" class="fa fa-github"></i>
</a>
<a href="https://github.com/sunface/rust-course/edit/main/src/compiler/fight-with-compiler/lifetime/closure-with-static.md" title="Suggest an edit" aria-label="Suggest an edit">
<i id="git-edit-button" class="fa fa-edit"></i>
</a>
</div>
</div>
<div id="search-wrapper" class="hidden">
<form id="searchbar-outer" class="searchbar-outer">
<input type="search" id="searchbar" name="searchbar" placeholder="Search this book ..." aria-controls="searchresults-outer" aria-describedby="searchresults-header">
</form>
<div id="searchresults-outer" class="searchresults-outer hidden">
<div id="searchresults-header" class="searchresults-header"></div>
<ul id="searchresults">
</ul>
</div>
</div>
<!-- Apply ARIA attributes after the sidebar and the sidebar toggle button are added to the DOM -->
<script>
document.getElementById('sidebar-toggle').setAttribute('aria-expanded', sidebar === 'visible');
document.getElementById('sidebar').setAttribute('aria-hidden', sidebar !== 'visible');
Array.from(document.querySelectorAll('#sidebar a')).forEach(function(link) {
link.setAttribute('tabIndex', sidebar === 'visible' ? 0 : -1);
});
</script>
<div id="content" class="content">
<!-- Page table of contents -->
<div class="sidetoc"><nav class="pagetoc"></nav></div>
<main>
<h1 id="当闭包碰到特征对象-1"><a class="header" href="#当闭包碰到特征对象-1">当闭包碰到特征对象 1</a></h1>
<p>特征对象是一个好东西闭包也是一个好东西但是如果两者你都想要时可能就会火星撞地球boom! 至于这两者为何会勾搭到一起?考虑一个常用场景:使用闭包作为回调函数.</p>
<h2 id="学习目标"><a class="header" href="#学习目标">学习目标</a></h2>
<p>如何使用闭包作为特征对象,并解决以下错误:<code>the parameter type </code> `impl Fn(&amp;str) -&gt; Res` <code> may not live long enough</code></p>
<h2 id="报错的代码"><a class="header" href="#报错的代码">报错的代码</a></h2>
<p>在下面代码中,我们通过闭包实现了一个简单的回调函数(错误代码已经标注)</p>
<pre><pre class="playground"><code class="language-rust edition2021">pub struct Res&lt;'a&gt; {
value: &amp;'a str,
}
impl&lt;'a&gt; Res&lt;'a&gt; {
pub fn new(value: &amp;str) -&gt; Res {
Res { value }
}
}
pub struct Container&lt;'a&gt; {
name: &amp;'a str,
callback: Option&lt;Box&lt;dyn Fn(&amp;str) -&gt; Res&gt;&gt;,
}
impl&lt;'a&gt; Container&lt;'a&gt; {
pub fn new(name: &amp;str) -&gt; Container {
Container {
name,
callback: None,
}
}
pub fn set(&amp;mut self, cb: impl Fn(&amp;str) -&gt; Res) {
self.callback = Some(Box::new(cb));
}
}
fn main() {
let mut inl = Container::new(&quot;Inline&quot;);
inl.set(|val| {
println!(&quot;Inline: {}&quot;, val);
Res::new(&quot;inline&quot;)
});
if let Some(cb) = inl.callback {
cb(&quot;hello, world&quot;);
}
}</code></pre></pre>
<pre><code>error[E0310]: the parameter type `impl Fn(&amp;str) -&gt; Res` may not live long enough
--&gt; src/main.rs:25:30
|
24 | pub fn set(&amp;mut self, cb: impl Fn(&amp;str) -&gt; Res) {
| -------------------- help: consider adding an explicit lifetime bound...: `impl Fn(&amp;str) -&gt; Res + 'static`
25 | self.callback = Some(Box::new(cb));
| ^^^^^^^^^^^^ ...so that the type `impl Fn(&amp;str) -&gt; Res` will meet its required lifetime bounds
</code></pre>
<p>从第一感觉来说,报错属实不应该,因为我们连引用都没有用,生命周期都不涉及,怎么就报错了?在继续深入之前,先来观察下该闭包是如何被使用的:</p>
<pre><pre class="playground"><code class="language-rust edition2021"><span class="boring">#![allow(unused)]
</span><span class="boring">fn main() {
</span>callback: Option&lt;Box&lt;dyn Fn(&amp;str) -&gt; Res&gt;&gt;,
<span class="boring">}</span></code></pre></pre>
<p>众所周知,闭包跟哈姆雷特一样,每一个都有<a href="https://course.rs/advance/functional-programing/closure.html#%E9%97%AD%E5%8C%85%E4%BD%9C%E4%B8%BA%E5%87%BD%E6%95%B0%E8%BF%94%E5%9B%9E%E5%80%BC">自己的类型</a>,因此我们无法通过类型标注的方式来声明一个闭包,那么只有一个办法,就是使用特征对象,因此上面代码中,通过<code>Box&lt;dyn Trait&gt;</code>的方式把闭包特征封装成一个特征对象。</p>
<h2 id="深入挖掘报错原因"><a class="header" href="#深入挖掘报错原因">深入挖掘报错原因</a></h2>
<p>事出诡异必有妖,那接下来我们一起去会会这只妖。</p>
<h4 id="特征对象的生命周期"><a class="header" href="#特征对象的生命周期">特征对象的生命周期</a></h4>
<p>首先编译器报错提示我们闭包活得不够久,那可以大胆推测,正因为使用了闭包作为特征对象,所以才活得不够久。因此首先需要调查下特征对象的生命周期。</p>
<p>首先给出结论:<strong>特征对象隐式的具有<code>'static</code>生命周期</strong></p>
<p>其实在 Rust 中,<code>'static</code>生命周期很常见,例如一个没有引用字段的结构体它其实也是<code>'static</code>。当<code>'static</code>用于一个类型时,该类型不能包含任何非<code>'static</code>引用字段,例如以下结构体:</p>
<pre><pre class="playground"><code class="language-rust edition2021"><span class="boring">#![allow(unused)]
</span><span class="boring">fn main() {
</span>struct Foo&lt;'a&gt; {
x : &amp;'a [u8]
};
<span class="boring">}</span></code></pre></pre>
<p>除非<code>x</code>字段借用了<code>'static</code>的引用,否则<code>'a</code>肯定比<code>'static</code>要小,那么该结构体实例的生命周期肯定不是<code>'static</code>: <code>'a: 'static</code>的限制不会被满足(<a href="https://course.rs/advance/lifetime/advance.html#%E7%94%9F%E5%91%BD%E5%91%A8%E6%9C%9F%E7%BA%A6%E6%9D%9FHRTB">HRTB</a>)。</p>
<p>对于特征对象来说,它没有包含非<code>'static</code>的引用,因此它隐式的具有<code>'static</code>生命周期, <code>Box&lt;dyn Trait&gt;</code>就跟<code>Box&lt;dyn Trait + 'static&gt;</code>是等价的。</p>
<h4 id="static-闭包的限制"><a class="header" href="#static-闭包的限制">'static 闭包的限制</a></h4>
<p>其实以上代码的错误很好解决,甚至编译器也提示了我们:</p>
<pre><code class="language-console">help: consider adding an explicit lifetime bound...: `impl Fn(&amp;str) -&gt; Res + 'static`
</code></pre>
<p>但是解决问题不是本文的目标,我们还是要继续深挖一下,如果闭包使用了<code>'static</code>会造成什么问题。</p>
<h5 id="1-无本地变量被捕获"><a class="header" href="#1-无本地变量被捕获">1. 无本地变量被捕获</a></h5>
<pre><pre class="playground"><code class="language-rust edition2021"><span class="boring">#![allow(unused)]
</span><span class="boring">fn main() {
</span>inl.set(|val| {
println!(&quot;Inline: {}&quot;, val);
Res::new(&quot;inline&quot;)
});
<span class="boring">}</span></code></pre></pre>
<p>以上代码只使用了闭包中传入的参数,并没有本地变量被捕获,因此<code>'static</code>闭包一切 OK。</p>
<h5 id="2-有本地变量被捕获"><a class="header" href="#2-有本地变量被捕获">2. 有本地变量被捕获</a></h5>
<pre><pre class="playground"><code class="language-rust edition2021"><span class="boring">#![allow(unused)]
</span><span class="boring">fn main() {
</span>let local = &quot;hello&quot;.to_string();
// 编译错误: 闭包不是'static!
inl.set(|val| {
println!(&quot;Inline: {}&quot;, val);
println!(&quot;{}&quot;, local);
Res::new(&quot;inline&quot;)
});
<span class="boring">}</span></code></pre></pre>
<p>这里我们在闭包中捕获了本地环境变量<code>local</code>,因为<code>local</code>不是<code>'static</code>,那么闭包也不再是<code>'static</code></p>
<h5 id="3-将本地变量-move-进闭包"><a class="header" href="#3-将本地变量-move-进闭包">3. 将本地变量 move 进闭包</a></h5>
<pre><pre class="playground"><code class="language-rust edition2021"><span class="boring">#![allow(unused)]
</span><span class="boring">fn main() {
</span>let local = &quot;hello&quot;.to_string();
inl.set(move |val| {
println!(&quot;Inline: {}&quot;, val);
println!(&quot;{}&quot;, local);
Res::new(&quot;inline&quot;)
});
// 编译错误: local已经被移动到闭包中这里无法再被借用
// println!(&quot;{}&quot;, local);
<span class="boring">}</span></code></pre></pre>
<p>如上所示,你也可以选择将本地变量的所有权<code>move</code>进闭包中,此时闭包再次具有<code>'static</code>生命周期</p>
<h5 id="4-非要捕获本地变量的引用"><a class="header" href="#4-非要捕获本地变量的引用">4. 非要捕获本地变量的引用?</a></h5>
<p>对于第 2 种情况,如果非要这么干,那<code>'static</code>肯定是没办法了,我们只能给予闭包一个新的生命周期:</p>
<pre><pre class="playground"><code class="language-rust edition2021"><span class="boring">#![allow(unused)]
</span><span class="boring">fn main() {
</span>pub struct Container&lt;'a, 'b&gt; {
name: &amp;'a str,
callback: Option&lt;Box&lt;dyn Fn(&amp;str) -&gt; Res + 'b&gt;&gt;,
}
impl&lt;'a, 'b&gt; Container&lt;'a, 'b&gt; {
pub fn new(name: &amp;str) -&gt; Container {
Container {
name,
callback: None,
}
}
pub fn set(&amp;mut self, cb: impl Fn(&amp;str) -&gt; Res + 'b) {
self.callback = Some(Box::new(cb));
}
}
<span class="boring">}</span></code></pre></pre>
<p>肉眼可见,代码复杂度哐哐哐提升,不得不说<code>'static</code>真香!</p>
<p>友情提示:由此修改引发的一系列错误,需要你自行修复: ) (再次友情小提示,可以考虑把<code>main</code>中的<code>local</code>变量声明位置挪到<code>inl</code>声明位置之前)</p>
<h2 id="姗姗来迟的正确代码"><a class="header" href="#姗姗来迟的正确代码">姗姗来迟的正确代码</a></h2>
<p>其实,大家应该都知道该如何修改了,不过出于严谨,我们还是继续给出完整的正确代码:</p>
<pre><pre class="playground"><code class="language-rust edition2021"><span class="boring">#![allow(unused)]
</span><span class="boring">fn main() {
</span>pub fn set(&amp;mut self, cb: impl Fn(&amp;str) -&gt; Res + 'static) {
<span class="boring">}</span></code></pre></pre>
<p>可能大家觉得我重新定义了<code>完整</code>两个字,其实是我不想水篇幅:)</p>
<h2 id="总结"><a class="header" href="#总结">总结</a></h2>
<p>闭包和特征对象的相爱相杀主要原因就在于特征对象默认具备<code>'static</code>的生命周期,同时我们还对什么样的类型具备<code>'static</code>进行了简单的分析。</p>
<p>同时,如果一个闭包拥有<code>'static</code>生命周期,那闭包无法通过引用的方式来捕获本地环境中的变量。如果你想要非要捕获,只能使用非<code>'static</code></p>
<div id="giscus-container"></div>
</main>
<nav class="nav-wrapper" aria-label="Page navigation">
<!-- Mobile navigation buttons -->
<a rel="prev" href="../../../compiler/fight-with-compiler/lifetime/loop.html" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left">
<i class="fa fa-angle-left"></i>
</a>
<a rel="next prefetch" href="../../../compiler/fight-with-compiler/borrowing/intro.html" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right">
<i class="fa fa-angle-right"></i>
</a>
<div style="clear: both"></div>
</nav>
</div>
</div>
<nav class="nav-wide-wrapper" aria-label="Page navigation">
<a rel="prev" href="../../../compiler/fight-with-compiler/lifetime/loop.html" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left">
<i class="fa fa-angle-left"></i>
</a>
<a rel="next prefetch" href="../../../compiler/fight-with-compiler/borrowing/intro.html" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right">
<i class="fa fa-angle-right"></i>
</a>
</nav>
</div>
<script>
window.playground_copyable = true;
</script>
<script src="../../../ace.js"></script>
<script src="../../../editor.js"></script>
<script src="../../../mode-rust.js"></script>
<script src="../../../theme-dawn.js"></script>
<script src="../../../theme-tomorrow_night.js"></script>
<script src="../../../elasticlunr.min.js"></script>
<script src="../../../mark.min.js"></script>
<script src="../../../searcher.js"></script>
<script src="../../../clipboard.min.js"></script>
<script src="../../../highlight.js"></script>
<script src="../../../book.js"></script>
<script type="text/javascript" charset="utf-8">
var pagePath = "compiler/fight-with-compiler/lifetime/closure-with-static.md"
</script>
<!-- Custom JS scripts -->
<script src="../../../assets/custom.js"></script>
<script src="../../../assets/bigPicture.js"></script>
</div>
</body>
</html>