2017-03-13 23:27:01 +08:00
<!DOCTYPE HTML>
< html lang = "en" >
< head >
< meta charset = "UTF-8" >
< title > `Drop` Trait 运行清理代码 - Rust 程序设计语言 简体中文版< / title >
< meta content = "text/html; charset=utf-8" http-equiv = "Content-Type" >
< meta name = "description" content = "Rust 程序设计语言 简体中文版" >
< meta name = "viewport" content = "width=device-width, initial-scale=1" >
< base href = "" >
< link rel = "stylesheet" href = "book.css" >
< link href = 'https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800' rel = 'stylesheet' type = 'text/css' >
< link rel = "shortcut icon" href = "favicon.png" >
<!-- Font Awesome -->
< link rel = "stylesheet" href = "https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" >
< link rel = "stylesheet" href = "highlight.css" >
< link rel = "stylesheet" href = "tomorrow-night.css" >
<!-- MathJax -->
< script type = "text/javascript" src = "https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML" > < / script >
<!-- Fetch JQuery from CDN but have a local fallback -->
< script src = "https://code.jquery.com/jquery-2.1.4.min.js" > < / script >
< script >
if (typeof jQuery == 'undefined') {
document.write(unescape("%3Cscript src='jquery.js'%3E%3C/script%3E"));
}
< / script >
< / head >
< body class = "light" >
<!-- Set the theme before any content is loaded, prevents flash -->
< script type = "text/javascript" >
var theme = localStorage.getItem('theme');
if (theme == null) { theme = 'light'; }
$('body').removeClass().addClass(theme);
< / script >
<!-- Hide / unhide sidebar before it is displayed -->
< script type = "text/javascript" >
var sidebar = localStorage.getItem('sidebar');
if (sidebar === "hidden") { $("html").addClass("sidebar-hidden") }
else if (sidebar === "visible") { $("html").addClass("sidebar-visible") }
< / script >
< div id = "sidebar" class = "sidebar" >
2017-04-18 14:55:09 +08:00
< ul class = "chapter" > < li > < a href = "ch01-00-introduction.html" > < strong > 1.< / strong > 介绍< / a > < / li > < li > < ul class = "section" > < li > < a href = "ch01-01-installation.html" > < strong > 1.1.< / strong > 安装< / a > < / li > < li > < a href = "ch01-02-hello-world.html" > < strong > 1.2.< / strong > Hello, World!< / a > < / li > < / ul > < / li > < li > < a href = "ch02-00-guessing-game-tutorial.html" > < strong > 2.< / strong > 猜猜看教程< / a > < / li > < li > < a href = "ch03-00-common-programming-concepts.html" > < strong > 3.< / strong > 通用编程概念< / a > < / li > < li > < ul class = "section" > < li > < a href = "ch03-01-variables-and-mutability.html" > < strong > 3.1.< / strong > 变量和可变性< / a > < / li > < li > < a href = "ch03-02-data-types.html" > < strong > 3.2.< / strong > 数据类型< / a > < / li > < li > < a href = "ch03-03-how-functions-work.html" > < strong > 3.3.< / strong > 函数如何工作< / a > < / li > < li > < a href = "ch03-04-comments.html" > < strong > 3.4.< / strong > 注释< / a > < / li > < li > < a href = "ch03-05-control-flow.html" > < strong > 3.5.< / strong > 控制流< / a > < / li > < / ul > < / li > < li > < a href = "ch04-00-understanding-ownership.html" > < strong > 4.< / strong > 认识所有权< / a > < / li > < li > < ul class = "section" > < li > < a href = "ch04-01-what-is-ownership.html" > < strong > 4.1.< / strong > 什么是所有权< / a > < / li > < li > < a href = "ch04-02-references-and-borrowing.html" > < strong > 4.2.< / strong > 引用 & 借用< / a > < / li > < li > < a href = "ch04-03-slices.html" > < strong > 4.3.< / strong > Slices< / a > < / li > < / ul > < / li > < li > < a href = "ch05-00-structs.html" > < strong > 5.< / strong > 结构体< / a > < / li > < li > < ul class = "section" > < li > < a href = "ch05-01-method-syntax.html" > < strong > 5.1.< / strong > 方法语法< / a > < / li > < / ul > < / li > < li > < a href = "ch06-00-enums.html" > < strong > 6.< / strong > 枚举和模式匹配< / a > < / li > < li > < ul class = "section" > < li > < a href = "ch06-01-defining-an-enum.html" > < strong > 6.1.< / strong > 定义枚举< / a > < / li > < li > < a href = "ch06-02-match.html" > < strong > 6.2.< / strong > < code > match< / code > 控制流运算符< / a > < / li > < li > < a href = "ch06-03-if-let.html" > < strong > 6.3.< / strong > < code > if let< / code > 简单控制流< / a > < / li > < / ul > < / li > < li > < a href = "ch07-00-modules.html" > < strong > 7.< / strong > 模块< / a > < / li > < li > < ul class = "section" > < li > < a href = "ch07-01-mod-and-the-filesystem.html" > < strong > 7.1.< / strong > < code > mod< / code > 和文件系统< / a > < / li > < li > < a href = "ch07-02-controlling-visibility-with-pub.html" > < strong > 7.2.< / strong > 使用< code > pub< / code > 控制可见性< / a > < / li > < li > < a href = "ch07-03-importing-names-with-use.html" > < strong > 7.3.< / strong > 使用< code > use< / code > 导入命名< / a > < / li > < / ul > < / li > < li > < a href = "ch08-00-common-collections.html" > < strong > 8.< / strong > 通用集合类型< / a > < / li > < li > < ul class = "section" > < li > < a href = "ch08-01-vectors.html" > < strong > 8.1.< / strong > vector< / a > < / li > < li > < a href = "ch08-02-strings.html" > < strong > 8.2.< / strong > 字符串< / a > < / li > < li > < a href = "ch08-03-hash-maps.html" > < strong > 8.3.< / strong > 哈希 map< / a > < / li > < / ul > < / li > < li > < a href = "ch09-00-error-handling.html" > < strong > 9.< / strong > 错误处理< / a > < / li > < li > < ul class = "section" > < li > < a href = "ch09-01-unrecoverable-errors-with-panic.html" > < strong > 9.1.< / strong > < code > panic!< / code > 与不可恢复的错误< / a > < / li > < li > < a href = "ch09-02-recoverable-errors-with-result.html" > < strong > 9.2.< / strong > < code > Result< / code > 与可恢复的错误< / a > < / li > < li > < a href = "ch09-03-to-panic-or-not-to-panic.html" > < strong > 9.3.< / strong > < code > panic!< / code > 还是不< code > panic!< / code > < / a > < / li > < / ul > < / li > < li > < a href = "ch10-00-generics.html" > < strong > 10.< / strong > 泛型、trait 和生命周期< / a > < / li > < li > < ul class = "section" > < li > < a href = "ch10-01-syntax.html" > < strong > 10.1.< / strong > 泛型数据类型< / a > < / li > < li > < a href = "ch10-02-traits.html" > < strong > 10.2.< / strong > trait: 定义共享的行为< / a > < / li > < li > < a href = "ch10-03-lifetime-syntax.html" > < strong > 10.3.< / strong > 生命周期与引用有效性< / a > < / li > < / ul > < / li > < li > < a href = "ch11-00-testing.html" > < strong > 11.< / strong > 测试< / a > < / li > < li > < ul class = "section" > < li > < a href = "ch11-01-writing-tests.html" > < strong > 11.1.< / strong > 编写测试< / a > < / li > < li > < a href = "ch11-02-running-tests.html" > < strong > 11.2.< / strong > 运行测试< / a > < / li > < li > < a href = "ch11-03-test-organization.html" > < strong > 11.3.< / strong > 测试的组织结构< / a > < / li > < / ul > < / li > < li > < a href = "ch12-00-an-io-project.h
2017-03-13 23:27:01 +08:00
< / div >
< div id = "page-wrapper" class = "page-wrapper" >
< div class = "page" >
< div id = "menu-bar" class = "menu-bar" >
< div class = "left-buttons" >
< i id = "sidebar-toggle" class = "fa fa-bars" > < / i >
< i id = "theme-toggle" class = "fa fa-paint-brush" > < / i >
< / div >
< h1 class = "menu-title" > Rust 程序设计语言 简体中文版< / h1 >
< div class = "right-buttons" >
< i id = "print-button" class = "fa fa-print" title = "Print this book" > < / i >
< / div >
< / div >
< div id = "content" class = "content" >
2017-03-14 23:52:03 +08:00
< a class = "header" href = "#drop-trait-运行清理代码" name = "drop-trait-运行清理代码" > < h2 > < code > Drop< / code > Trait 运行清理代码< / h2 > < / a >
< blockquote >
< p > < a href = "https://github.com/rust-lang/book/blob/master/second-edition/src/ch15-03-drop.md" > ch15-03-drop.md< / a >
< br >
commit 3f2a1bd8dbb19cc48b210fc4fb35c305c8d81b56< / p >
< / blockquote >
< p > 对于智能指针模式来说另一个重要的 trait 是< code > Drop< / code > 。< code > Drop< / code > 运行我们在值要离开作用域时执行一些代码。智能指针在被丢弃时会执行一些重要的清理工作,比如释放内存或减少引用计数。更一般的来讲,数据类型可以管理多于内存的资源,比如文件或网络连接,而使用< code > Drop< / code > 在代码处理完他们之后释放这些资源。我们在智能指针上下文中讨论< code > Drop< / code > 是因为其功能几乎总是用于实现智能指针。< / p >
< p > 在其他一些语言中,必须每次总是必须记住在使用完智能指针实例后调用清理内存或资源的代码。如果忘记的话,运行代码的系统可能会因为负荷过重而崩溃。在 Rust 中,可以指定一些代码应该在值离开作用域时被执行,而编译器会自动插入这些代码。这意味着无需记住在所有处理完这些类型实例后调用清理代码,而仍然不会泄露资源!< / p >
< p > 指定在值离开作用域时应该执行的代码的方式是实现< code > Drop< / code > trait。< code > Drop< / code > trait 要求我们实现一个叫做< code > drop< / code > 的方法,它获取一个< code > self< / code > 的可变引用。< / p >
< p > 列表 15-8 展示了并没有实际功能的结构体< code > CustomSmartPointer< / code > ,不过我们会在创建实例之后打印出< code > CustomSmartPointer created.< / code > ,而在实例离开作用域时打印出< code > Dropping CustomSmartPointer!< / code > ,这样就能看出哪些代码被执行了。不同于< code > println!< / code > 语句,我们在智能指针需要执行清理代码时使用< code > drop< / code > : < / p >
< p > < span class = "filename" > Filename: src/main.rs< / span > < / p >
< pre > < code class = "language-rust" > struct CustomSmartPointer {
data: String,
}
impl Drop for CustomSmartPointer {
fn drop(& mut self) {
println!(" Dropping CustomSmartPointer!" );
}
}
fn main() {
let c = CustomSmartPointer { data: String::from(" some data" ) };
println!(" CustomSmartPointer created." );
println!(" Wait for it..." );
}
< / code > < / pre >
< p > < span class = "caption" > Listing 15-8: A < code > CustomSmartPointer< / code > struct that
implements the < code > Drop< / code > trait, where we could put code that would clean up after
the < code > CustomSmartPointer< / code > .< / span > < / p >
< p > < code > Drop< / code > trait 位于 prelude 中,所以无需导入它。< code > drop< / code > 方法的实现调用了< code > println!< / code > ;这里是你需要实际需要放入关闭套接字代码的地方。在< code > main< / code > 函数中,我们创建一个< code > CustomSmartPointer< / code > 的新实例并打印出< code > CustomSmartPointer created.< / code > 以便在运行时知道代码运行到此出。在< code > main< / code > 的结尾,< code > CustomSmartPointer< / code > 的实例会离开作用域。注意我们没有显式调用< code > drop< / code > 方法:< / p >
< p > 当运行这个程序,我们会看到:< / p >
< pre > < code > CustomSmartPointer created.
Wait for it...
Dropping CustomSmartPointer!
< / code > < / pre >
2017-03-16 00:02:13 +08:00
< p > 被打印到屏幕上,它展示了 Rust 在实例离开作用域时自动调用了< code > drop< / code > 。< / p >
< p > 可以使用< code > std::mem::drop< / code > 函数来在值离开作用域之前丢弃它。这通常是不必要的;整个< code > Drop< / code > trait 的要点在于它自动的帮我们处理清理工作。在第十六章讲到并发时我们会看到一个需要在离开作用域之前丢弃值的例子。现在知道这是可能的即可,< code > std::mem::drop< / code > 位于 prelude 中所以可以如列表 15-9 所示直接调用< code > drop< / code > : < / p >
< p > < span class = "filename" > Filename: src/main.rs< / span > < / p >
< pre > < code class = "language-rust,ignore" > fn main() {
let c = CustomSmartPointer { data: String::from(" some data" ) };
println!(" CustomSmartPointer created." );
drop(c);
println!(" Wait for it..." );
}
< / code > < / pre >
< p > < span class = "caption" > Listing 15-9: Calling < code > std::mem::drop< / code > to explicitly drop
a value before it goes out of scope< / span > < / p >
< p > 运行这段代码会打印出如下内容,因为< code > Dropping CustomSmartPointer!< / code > 在< code > CustomSmartPointer created.< / code > 和< code > Wait for it...< / code > 之间被打印出来,表明析构代码被执行了:< / p >
< pre > < code > CustomSmartPointer created.
Dropping CustomSmartPointer!
Wait for it...
< / code > < / pre >
< p > 注意不允许直接调用我们定义的< code > drop< / code > 方法:如果将列表 15-9 中的< code > drop(c)< / code > 替换为< code > c.drop()< / code > ,会得到一个编译错误表明< code > explicit destructor calls not allowed< / code > 。不允许直接调用< code > Drop::drop< / code > 的原因是 Rust 在值离开作用域时会自动插入< code > Drop::drop< / code > ,这样就会丢弃值两次。丢弃一个值两次可能会造成错误或破坏内存,所以 Rust 就不允许这么做。相应的可以调用< code > std::mem::drop< / code > ,它的定义是:< / p >
< pre > < code class = "language-rust" > pub mod std {
pub mod mem {
pub fn drop< T> (x: T) { }
}
}
< / code > < / pre >
< p > 这个函数对于< code > T< / code > 是泛型的,所以可以传递任何值。这个函数的函数体并没有任何实际内容,所以它也不会利用其参数。这个空函数的作用在于< code > drop< / code > 获取其参数的所有权,它意味着在这个函数结尾< code > x< / code > 离开作用域时< code > x< / code > 会被丢弃。< / p >
< p > 使用< code > Drop< / code > trait 实现指定的代码在很多方面都使得清理值变得方便和安全:比如可以使用它来创建我们自己的内存分配器!通过< code > Drop< / code > trait 和 Rust 所有权系统,就无需担心之后清理代码,因为 Rust 会自动考虑这些问题。如果代码在值仍被使用时就清理它会出现编译错误,因为所有权系统确保了引用总是有效的,这也就保证了< code > drop< / code > 只会在值不再被使用时被调用一次。< / p >
< p > 现在我们学习了< code > Box< T> < / code > 和一些智能指针的特性,让我们聊聊一些其他标准库中定义的拥有各种实用功能的智能指针。< / p >
2017-03-14 23:52:03 +08:00
2017-03-13 23:27:01 +08:00
< / div >
<!-- Mobile navigation buttons -->
< a href = "ch15-02-deref.html" class = "mobile-nav-chapters previous" >
< i class = "fa fa-angle-left" > < / i >
< / a >
< a href = "ch15-04-rc.html" class = "mobile-nav-chapters next" >
< i class = "fa fa-angle-right" > < / i >
< / a >
< / div >
< a href = "ch15-02-deref.html" class = "nav-chapters previous" title = "You can navigate through the chapters using the arrow keys" >
< i class = "fa fa-angle-left" > < / i >
< / a >
< a href = "ch15-04-rc.html" class = "nav-chapters next" title = "You can navigate through the chapters using the arrow keys" >
< i class = "fa fa-angle-right" > < / i >
< / a >
< / div >
<!-- Local fallback for Font Awesome -->
< script >
if ($(".fa").css("font-family") !== "FontAwesome") {
$('< link rel = "stylesheet" type = "text/css" href = "_FontAwesome/css/font-awesome.css" > ').prependTo('head');
}
< / script >
<!-- Livereload script (if served using the cli tool) -->
< script src = "highlight.js" > < / script >
< script src = "book.js" > < / script >
< / body >
< / html >