mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2024-11-09 00:43:59 +08:00
466 lines
44 KiB
HTML
466 lines
44 KiB
HTML
|
<!DOCTYPE HTML>
|
|||
|
<html lang="en" class="light" dir="ltr">
|
|||
|
<head>
|
|||
|
<!-- Book generated using mdBook -->
|
|||
|
<meta charset="UTF-8">
|
|||
|
<title>使用线程同时地运行代码 - Rust 程序设计语言 简体中文版</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="ferris.css">
|
|||
|
<link rel="stylesheet" href="theme/2018-edition.css">
|
|||
|
<link rel="stylesheet" href="theme/semantic-notes.css">
|
|||
|
<link rel="stylesheet" href="theme/listing.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 expanded affix "><a href="title-page.html">Rust 程序设计语言</a></li><li class="chapter-item expanded affix "><a href="foreword.html">前言</a></li><li class="chapter-item expanded affix "><a href="ch00-00-introduction.html">简介</a></li><li class="chapter-item expanded "><a href="ch01-00-getting-started.html"><strong aria-hidden="true">1.</strong> 入门指南</a></li><li><ol class="section"><li class="chapter-item expanded "><a href="ch01-01-installation.html"><strong aria-hidden="true">1.1.</strong> 安装</a></li><li class="chapter-item expanded "><a href="ch01-02-hello-world.html"><strong aria-hidden="true">1.2.</strong> Hello, World!</a></li><li class="chapter-item expanded "><a href="ch01-03-hello-cargo.html"><strong aria-hidden="true">1.3.</strong> Hello, Cargo!</a></li></ol></li><li class="chapter-item expanded "><a href="ch02-00-guessing-game-tutorial.html"><strong aria-hidden="true">2.</strong> 写个猜数字游戏</a></li><li class="chapter-item expanded "><a href="ch03-00-common-programming-concepts.html"><strong aria-hidden="true">3.</strong> 常见编程概念</a></li><li><ol class="section"><li class="chapter-item expanded "><a href="ch03-01-variables-and-mutability.html"><strong aria-hidden="true">3.1.</strong> 变量与可变性</a></li><li class="chapter-item expanded "><a href="ch03-02-data-types.html"><strong aria-hidden="true">3.2.</strong> 数据类型</a></li><li class="chapter-item expanded "><a href="ch03-03-how-functions-work.html"><strong aria-hidden="true">3.3.</strong> 函数</a></li><li class="chapter-item expanded "><a href="ch03-04-comments.html"><strong aria-hidden="true">3.4.</strong> 注释</a></li><li class="chapter-item expanded "><a href="ch03-05-control-flow.html"><strong aria-hidden="true">3.5.</strong> 控制流</a></li></ol></li><li class="chapter-item expanded "><a href="ch04-00-understanding-ownership.html"><strong aria-hidden="true">4.</strong> 认识所有权</a></li><li><ol class="section"><li class="chapter-item expanded "><a href="ch04-01-what-is-ownership.html"><strong aria-hidden="true">4.1.</strong> 什么是所有权?</a></li><li class="chapter-item expanded "><a href="ch04-02-references-and-borrowing.html"><strong aria-hidden="true">4.2.</strong> 引用与借用</a></li><li class="chapter-item expanded "><a href="ch04-03-slices.html"><strong aria-hidden="true">4.3.</strong> Slice 类型</a></li></ol></li><li class="chapter-item expanded "><a href="ch05-00-structs.html"><strong aria-hidden="true">5.</strong> 使用结构体组织相关联的数据</a></li><li><ol class="section"><li class="chapter-item expanded "><a href="ch05-01-defining-structs.html"><strong aria-hidden="true">5.1.</strong> 结构体的定义和实例化</a></li><li class="chapter-item expanded "><a href="ch05-02-example-structs.html"><strong aria-hidden="true">5.2.</strong> 结构体示例程序</a></li><li class="chapter-item expanded "><a href="ch05-03-method-syntax.html"><strong aria-hidden="true">5.3.</strong> 方法语法</a></li></ol></li><li class="chapter-item expanded "><a href="ch06-00-enums.html"><strong aria-hidden="true">6.</strong> 枚举和模式匹配</a></li><li><ol class="section"><li class="chapter-item expanded "><a href="ch06-01-defining-an-enum.html"><strong aria-hidden="true">6.1.</strong> 枚举的定义</a></li><li class="chapter-item expanded "><a href="ch06-02-match.html"><strong aria-hidden="true">6.2.</strong> match 控制流结构</a></li><li class="chapter-item expanded "><a href="ch06-03-if-let.html"><strong aria-hidden="true">6.3.</strong> if let 简洁控制流</a></li></ol></li><li class="chapter-item expanded "><a href="ch07-00-managing-growing-projects-with-packages-crates-and-modules.html"><strong aria-hidden="true">7.</strong> 使用包、Crate 和模块管理不断增长的项目</a></li><li><ol class="section"><li class="chapter-item expanded "><a href="ch07-01-packages-and-crates.html"><strong aria-hidden="true">7.1.</strong> 包和 Crate</a></li><li class="chapter-item expanded "><a h
|
|||
|
</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 程序设计语言 简体中文版</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/KaiserY/trpl-zh-cn/tree/main" title="Git repository" aria-label="Git repository">
|
|||
|
<i id="git-repository-button" class="fa fa-github"></i>
|
|||
|
</a>
|
|||
|
<a href="https://github.com/KaiserY/trpl-zh-cn/edit/main/src/ch16-01-threads.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">
|
|||
|
<main>
|
|||
|
<h2 id="使用线程同时运行代码"><a class="header" href="#使用线程同时运行代码">使用线程同时运行代码</a></h2>
|
|||
|
<blockquote>
|
|||
|
<p><a href="https://github.com/rust-lang/book/blob/main/src/ch16-01-threads.md">ch16-01-threads.md</a>
|
|||
|
<br>
|
|||
|
commit 8aecae3efe5ca8f79f055b70f05d9a3f990bce7b</p>
|
|||
|
</blockquote>
|
|||
|
<p>在大部分现代操作系统中,已执行程序的代码在一个 <strong>进程</strong>(<em>process</em>)中运行,操作系统则会负责管理多个进程。在程序内部,也可以拥有多个同时运行的独立部分。这些运行这些独立部分的功能被称为 <strong>线程</strong>(<em>threads</em>)。例如,web 服务器可以有多个线程以便可以同时响应多个请求。</p>
|
|||
|
<p>将程序中的计算拆分进多个线程可以改善性能,因为程序可以同时进行多个任务,不过这也会增加复杂性。因为线程是同时运行的,所以无法预先保证不同线程中的代码的执行顺序。这会导致诸如此类的问题:</p>
|
|||
|
<ul>
|
|||
|
<li>竞态条件(Race conditions),多个线程以不一致的顺序访问数据或资源</li>
|
|||
|
<li>死锁(Deadlocks),两个线程相互等待对方,这会阻止两者继续运行</li>
|
|||
|
<li>只会发生在特定情况且难以稳定重现和修复的 bug</li>
|
|||
|
</ul>
|
|||
|
<p>Rust 尝试减轻使用线程的负面影响。不过在多线程上下文中编程仍需格外小心,同时其所要求的代码结构也不同于运行于单线程的程序。</p>
|
|||
|
<p>编程语言有一些不同的方法来实现线程,而且很多操作系统提供了创建新线程的 API。Rust 标准库使用 <em>1:1</em> 线程实现,这代表程序的每一个语言级线程使用一个系统线程。有一些 crate 实现了其他有着不同于 1:1 模型取舍的线程模型。</p>
|
|||
|
<h3 id="使用-spawn-创建新线程"><a class="header" href="#使用-spawn-创建新线程">使用 <code>spawn</code> 创建新线程</a></h3>
|
|||
|
<p>为了创建一个新线程,需要调用 <code>thread::spawn</code> 函数并传递一个闭包(第十三章学习了闭包),并在其中包含希望在新线程运行的代码。示例 16-1 中的例子在主线程打印了一些文本而另一些文本则由新线程打印:</p>
|
|||
|
<p><span class="filename">文件名:src/main.rs</span></p>
|
|||
|
<pre><pre class="playground"><code class="language-rust edition2021">use std::thread;
|
|||
|
use std::time::Duration;
|
|||
|
|
|||
|
fn main() {
|
|||
|
thread::spawn(|| {
|
|||
|
for i in 1..10 {
|
|||
|
println!("hi number {i} from the spawned thread!");
|
|||
|
thread::sleep(Duration::from_millis(1));
|
|||
|
}
|
|||
|
});
|
|||
|
|
|||
|
for i in 1..5 {
|
|||
|
println!("hi number {i} from the main thread!");
|
|||
|
thread::sleep(Duration::from_millis(1));
|
|||
|
}
|
|||
|
}</code></pre></pre>
|
|||
|
<p><span class="caption">示例 16-1: 创建一个打印某些内容的新线程,但是主线程打印其它内容</span></p>
|
|||
|
<p>注意当 Rust 程序的主线程结束时,新线程也会结束,而不管其是否执行完毕。这个程序的输出可能每次都略有不同,不过它大体上看起来像这样:</p>
|
|||
|
<pre><code class="language-text">hi number 1 from the main thread!
|
|||
|
hi number 1 from the spawned thread!
|
|||
|
hi number 2 from the main thread!
|
|||
|
hi number 2 from the spawned thread!
|
|||
|
hi number 3 from the main thread!
|
|||
|
hi number 3 from the spawned thread!
|
|||
|
hi number 4 from the main thread!
|
|||
|
hi number 4 from the spawned thread!
|
|||
|
hi number 5 from the spawned thread!
|
|||
|
</code></pre>
|
|||
|
<p><code>thread::sleep</code> 调用强制线程停止执行一小段时间,这会允许其他不同的线程运行。这些线程可能会轮流运行,不过并不保证如此:这依赖操作系统如何调度线程。在这里,主线程首先打印,即便新创建线程的打印语句位于程序的开头,甚至即便我们告诉新建的线程打印直到 <code>i</code> 等于 9,它在主线程结束之前也只打印到了 5。</p>
|
|||
|
<p>如果运行代码只看到了主线程的输出,或没有出现重叠打印的现象,尝试增大区间 (变量 <code>i</code> 的范围) 来增加操作系统切换线程的机会。</p>
|
|||
|
<h4 id="使用-join-等待所有线程结束"><a class="header" href="#使用-join-等待所有线程结束">使用 <code>join</code> 等待所有线程结束</a></h4>
|
|||
|
<p>由于主线程结束,示例 16-1 中的代码大部分时候不光会提早结束新建线程,因为无法保证线程运行的顺序,我们甚至不能实际保证新建线程会被执行!</p>
|
|||
|
<p>可以通过将 <code>thread::spawn</code> 的返回值储存在变量中来修复新建线程部分没有执行或者完全没有执行的问题。<code>thread::spawn</code> 的返回值类型是 <code>JoinHandle</code>。<code>JoinHandle</code> 是一个拥有所有权的值,当对其调用 <code>join</code> 方法时,它会等待其线程结束。示例 16-2 展示了如何使用示例 16-1 中创建的线程的 <code>JoinHandle</code> 并调用 <code>join</code> 来确保新建线程在 <code>main</code> 退出前结束运行:</p>
|
|||
|
<p><span class="filename">文件名:src/main.rs</span></p>
|
|||
|
<pre><pre class="playground"><code class="language-rust edition2021">use std::thread;
|
|||
|
use std::time::Duration;
|
|||
|
|
|||
|
fn main() {
|
|||
|
let handle = thread::spawn(|| {
|
|||
|
for i in 1..10 {
|
|||
|
println!("hi number {i} from the spawned thread!");
|
|||
|
thread::sleep(Duration::from_millis(1));
|
|||
|
}
|
|||
|
});
|
|||
|
|
|||
|
for i in 1..5 {
|
|||
|
println!("hi number {i} from the main thread!");
|
|||
|
thread::sleep(Duration::from_millis(1));
|
|||
|
}
|
|||
|
|
|||
|
handle.join().unwrap();
|
|||
|
}</code></pre></pre>
|
|||
|
<p><span class="caption">示例 16-2: 从 <code>thread::spawn</code> 保存一个 <code>JoinHandle</code> 以确保该线程能够运行至结束</span></p>
|
|||
|
<p>通过调用 handle 的 <code>join</code> 会阻塞当前线程直到 handle 所代表的线程结束。<strong>阻塞</strong>(<em>Blocking</em>)线程意味着阻止该线程执行工作或退出。因为我们将 <code>join</code> 调用放在了主线程的 <code>for</code> 循环之后,运行示例 16-2 应该会产生类似这样的输出:</p>
|
|||
|
<pre><code class="language-text">hi number 1 from the main thread!
|
|||
|
hi number 2 from the main thread!
|
|||
|
hi number 1 from the spawned thread!
|
|||
|
hi number 3 from the main thread!
|
|||
|
hi number 2 from the spawned thread!
|
|||
|
hi number 4 from the main thread!
|
|||
|
hi number 3 from the spawned thread!
|
|||
|
hi number 4 from the spawned thread!
|
|||
|
hi number 5 from the spawned thread!
|
|||
|
hi number 6 from the spawned thread!
|
|||
|
hi number 7 from the spawned thread!
|
|||
|
hi number 8 from the spawned thread!
|
|||
|
hi number 9 from the spawned thread!
|
|||
|
</code></pre>
|
|||
|
<p>这两个线程仍然会交替执行,不过主线程会由于 <code>handle.join()</code> 调用会等待直到新建线程执行完毕。</p>
|
|||
|
<p>不过让我们看看将 <code>handle.join()</code> 移动到 <code>main</code> 中 <code>for</code> 循环之前会发生什么,如下:</p>
|
|||
|
<p><span class="filename">文件名:src/main.rs</span></p>
|
|||
|
<pre><pre class="playground"><code class="language-rust edition2021">use std::thread;
|
|||
|
use std::time::Duration;
|
|||
|
|
|||
|
fn main() {
|
|||
|
let handle = thread::spawn(|| {
|
|||
|
for i in 1..10 {
|
|||
|
println!("hi number {i} from the spawned thread!");
|
|||
|
thread::sleep(Duration::from_millis(1));
|
|||
|
}
|
|||
|
});
|
|||
|
|
|||
|
handle.join().unwrap();
|
|||
|
|
|||
|
for i in 1..5 {
|
|||
|
println!("hi number {i} from the main thread!");
|
|||
|
thread::sleep(Duration::from_millis(1));
|
|||
|
}
|
|||
|
}</code></pre></pre>
|
|||
|
<p>主线程会等待直到新建线程执行完毕之后才开始执行 <code>for</code> 循环,所以输出将不会交替出现,如下所示:</p>
|
|||
|
<pre><code class="language-text">hi number 1 from the spawned thread!
|
|||
|
hi number 2 from the spawned thread!
|
|||
|
hi number 3 from the spawned thread!
|
|||
|
hi number 4 from the spawned thread!
|
|||
|
hi number 5 from the spawned thread!
|
|||
|
hi number 6 from the spawned thread!
|
|||
|
hi number 7 from the spawned thread!
|
|||
|
hi number 8 from the spawned thread!
|
|||
|
hi number 9 from the spawned thread!
|
|||
|
hi number 1 from the main thread!
|
|||
|
hi number 2 from the main thread!
|
|||
|
hi number 3 from the main thread!
|
|||
|
hi number 4 from the main thread!
|
|||
|
</code></pre>
|
|||
|
<p>诸如将 <code>join</code> 放置于何处这样的小细节,会影响线程是否同时运行。</p>
|
|||
|
<h3 id="将-move-闭包与线程一同使用"><a class="header" href="#将-move-闭包与线程一同使用">将 <code>move</code> 闭包与线程一同使用</a></h3>
|
|||
|
<p><code>move</code> 关键字经常用于传递给 <code>thread::spawn</code> 的闭包,因为闭包会获取从环境中取得的值的所有权,因此会将这些值的所有权从一个线程传送到另一个线程。在第十三章 <a href="ch13-01-closures.html#%E9%97%AD%E5%8C%85%E4%BC%9A%E6%8D%95%E8%8E%B7%E5%85%B6%E7%8E%AF%E5%A2%83">“闭包会捕获其环境”</a> 部分讨论了闭包上下文中的 <code>move</code>。现在我们会更专注于 <code>move</code> 和 <code>thread::spawn</code> 之间的交互。</p>
|
|||
|
<p>在第十三章中,我们讲到可以在参数列表前使用 <code>move</code> 关键字强制闭包获取其使用的环境值的所有权。这个技巧在创建新线程将值的所有权从一个线程移动到另一个线程时最为实用。</p>
|
|||
|
<p>注意示例 16-1 中传递给 <code>thread::spawn</code> 的闭包并没有任何参数:并没有在新建线程代码中使用任何主线程的数据。为了在新建线程中使用来自于主线程的数据,需要新建线程的闭包获取它需要的值。示例 16-3 展示了一个尝试在主线程中创建一个 vector 并用于新建线程的例子,不过这么写还不能工作,如下所示:</p>
|
|||
|
<p><span class="filename">文件名:src/main.rs</span></p>
|
|||
|
<pre><code class="language-rust ignore does_not_compile">use std::thread;
|
|||
|
|
|||
|
fn main() {
|
|||
|
let v = vec![1, 2, 3];
|
|||
|
|
|||
|
let handle = thread::spawn(|| {
|
|||
|
println!("Here's a vector: {v:?}");
|
|||
|
});
|
|||
|
|
|||
|
handle.join().unwrap();
|
|||
|
}</code></pre>
|
|||
|
<p><span class="caption">示例 16-3: 尝试在另一个线程使用主线程创建的 vector</span></p>
|
|||
|
<p>闭包使用了 <code>v</code>,所以闭包会捕获 <code>v</code> 并使其成为闭包环境的一部分。因为 <code>thread::spawn</code> 在一个新线程中运行这个闭包,所以可以在新线程中访问 <code>v</code>。然而当编译这个例子时,会得到如下错误:</p>
|
|||
|
<pre><code class="language-console">$ cargo run
|
|||
|
Compiling threads v0.1.0 (file:///projects/threads)
|
|||
|
error[E0373]: closure may outlive the current function, but it borrows `v`, which is owned by the current function
|
|||
|
--> src/main.rs:6:32
|
|||
|
|
|
|||
|
6 | let handle = thread::spawn(|| {
|
|||
|
| ^^ may outlive borrowed value `v`
|
|||
|
7 | println!("Here's a vector: {v:?}");
|
|||
|
| - `v` is borrowed here
|
|||
|
|
|
|||
|
note: function requires argument type to outlive `'static`
|
|||
|
--> src/main.rs:6:18
|
|||
|
|
|
|||
|
6 | let handle = thread::spawn(|| {
|
|||
|
| __________________^
|
|||
|
7 | | println!("Here's a vector: {v:?}");
|
|||
|
8 | | });
|
|||
|
| |______^
|
|||
|
help: to force the closure to take ownership of `v` (and any other referenced variables), use the `move` keyword
|
|||
|
|
|
|||
|
6 | let handle = thread::spawn(move || {
|
|||
|
| ++++
|
|||
|
|
|||
|
For more information about this error, try `rustc --explain E0373`.
|
|||
|
error: could not compile `threads` (bin "threads") due to 1 previous error
|
|||
|
</code></pre>
|
|||
|
<p>Rust 会 <strong>推断</strong> 如何捕获 <code>v</code>,因为 <code>println!</code> 只需要 <code>v</code> 的引用,闭包尝试借用 <code>v</code>。然而这有一个问题:Rust 不知道这个新建线程会执行多久,所以无法知晓对 <code>v</code> 的引用是否一直有效。</p>
|
|||
|
<p>示例 16-4 展示了一个 <code>v</code> 的引用很有可能不再有效的场景:</p>
|
|||
|
<p><span class="filename">文件名:src/main.rs</span></p>
|
|||
|
<pre><code class="language-rust ignore does_not_compile">use std::thread;
|
|||
|
|
|||
|
fn main() {
|
|||
|
let v = vec![1, 2, 3];
|
|||
|
|
|||
|
let handle = thread::spawn(|| {
|
|||
|
println!("Here's a vector: {v:?}");
|
|||
|
});
|
|||
|
|
|||
|
drop(v); // oh no!
|
|||
|
|
|||
|
handle.join().unwrap();
|
|||
|
}</code></pre>
|
|||
|
<p><span class="caption">示例 16-4: 一个具有闭包的线程,尝试使用一个在主线程中被回收的引用 <code>v</code></span></p>
|
|||
|
<p>如果 Rust 允许这段代码运行,则新建线程则可能会立刻被转移到后台并完全没有机会运行。新建线程内部有一个 <code>v</code> 的引用,不过主线程立刻就使用第十五章讨论的 <code>drop</code> 丢弃了 <code>v</code>。接着当新建线程开始执行,<code>v</code> 已不再有效,所以其引用也是无效的。噢,这太糟了!</p>
|
|||
|
<p>为了修复示例 16-3 的编译错误,我们可以听取错误信息的建议:</p>
|
|||
|
<pre><code class="language-text">help: to force the closure to take ownership of `v` (and any other referenced variables), use the `move` keyword
|
|||
|
|
|
|||
|
6 | let handle = thread::spawn(move || {
|
|||
|
| ++++
|
|||
|
</code></pre>
|
|||
|
<p>通过在闭包之前增加 <code>move</code> 关键字,我们强制闭包获取其使用的值的所有权,而不是任由 Rust 推断它应该借用值。示例 16-5 中展示的对示例 16-3 代码的修改,可以按照我们的预期编译并运行:</p>
|
|||
|
<p><span class="filename">文件名:src/main.rs</span></p>
|
|||
|
<pre><pre class="playground"><code class="language-rust edition2021">use std::thread;
|
|||
|
|
|||
|
fn main() {
|
|||
|
let v = vec![1, 2, 3];
|
|||
|
|
|||
|
let handle = thread::spawn(move || {
|
|||
|
println!("Here's a vector: {v:?}");
|
|||
|
});
|
|||
|
|
|||
|
handle.join().unwrap();
|
|||
|
}</code></pre></pre>
|
|||
|
<p><span class="caption">示例 16-5: 使用 <code>move</code> 关键字强制获取它使用的值的所有权</span></p>
|
|||
|
<p>我们可能希望尝试同样的方法来修复示例 16-4 中的代码,其主线程使用 <code>move</code> 闭包调用了 <code>drop</code>。然而这个修复行不通,因为示例 16-4 所尝试的操作由于一个不同的原因而不被允许。如果为闭包增加 <code>move</code>,将会把 <code>v</code> 移动进闭包的环境中,如此将不能在主线程中对其调用 <code>drop</code> 了。我们会得到如下不同的编译错误:</p>
|
|||
|
<pre><code class="language-console">$ cargo run
|
|||
|
Compiling threads v0.1.0 (file:///projects/threads)
|
|||
|
error[E0382]: use of moved value: `v`
|
|||
|
--> src/main.rs:10:10
|
|||
|
|
|
|||
|
4 | let v = vec![1, 2, 3];
|
|||
|
| - move occurs because `v` has type `Vec<i32>`, which does not implement the `Copy` trait
|
|||
|
5 |
|
|||
|
6 | let handle = thread::spawn(move || {
|
|||
|
| ------- value moved into closure here
|
|||
|
7 | println!("Here's a vector: {v:?}");
|
|||
|
| - variable moved due to use in closure
|
|||
|
...
|
|||
|
10 | drop(v); // oh no!
|
|||
|
| ^ value used here after move
|
|||
|
|
|||
|
For more information about this error, try `rustc --explain E0382`.
|
|||
|
error: could not compile `threads` (bin "threads") due to 1 previous error
|
|||
|
</code></pre>
|
|||
|
<p>Rust 的所有权规则又一次帮助了我们!示例 16-3 中的错误是因为 Rust 是保守的并只会为线程借用 <code>v</code>,这意味着主线程理论上可能使新建线程的引用无效。通过告诉 Rust 将 <code>v</code> 的所有权移动到新建线程,我们向 Rust 保证主线程不会再使用 <code>v</code>。如果对示例 16-4 也做出如此修改,那么当在主线程中使用 <code>v</code> 时就会违反所有权规则。 <code>move</code> 关键字覆盖了 Rust 默认保守的借用,但它不允许我们违反所有权规则。</p>
|
|||
|
<p>现在我们对线程和线程 API 有了基本的了解,让我们讨论一下使用线程实际可以 <strong>做</strong> 什么吧。</p>
|
|||
|
|
|||
|
</main>
|
|||
|
|
|||
|
<nav class="nav-wrapper" aria-label="Page navigation">
|
|||
|
<!-- Mobile navigation buttons -->
|
|||
|
<a rel="prev" href="ch16-00-concurrency.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="ch16-02-message-passing.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="ch16-00-concurrency.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="ch16-02-message-passing.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="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>
|
|||
|
|
|||
|
<!-- Custom JS scripts -->
|
|||
|
<script src="ferris.js"></script>
|
|||
|
|
|||
|
|
|||
|
</div>
|
|||
|
</body>
|
|||
|
</html>
|