mirror of https://github.com/sunface/rust-course
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.
34 lines
52 KiB
34 lines
52 KiB
1 week ago
|
<!DOCTYPE HTML>
|
||
|
<html lang="zh-CN" class="light" dir="ltr">
|
||
|
<head>
|
||
|
<!-- sidebar iframe generated using mdBook
|
||
|
|
||
|
This is a frame, and not included directly in the page, to control the total size of the
|
||
|
book. The TOC contains an entry for each page, so if each page includes a copy of the TOC,
|
||
|
the total size of the page becomes O(n**2).
|
||
|
|
||
|
The frame is only used as a fallback when JS is turned off. When it's on, the sidebar is
|
||
|
instead added to the main page by `toc.js` instead. The JavaScript mode is better
|
||
|
because, when running in a `file:///` URL, the iframed page would not be Same-Origin as
|
||
|
the rest of the page, so the sidebar and the main page theme would fall out of sync.
|
||
|
-->
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="robots" content="noindex">
|
||
|
<!-- Custom HTML head -->
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
<meta name="theme-color" content="#ffffff">
|
||
|
<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">
|
||
|
<!-- Custom theme stylesheets -->
|
||
|
<link rel="stylesheet" href="theme/style.css">
|
||
|
</head>
|
||
|
<body class="sidebar-iframe-inner">
|
||
|
<ol class="chapter"><li class="chapter-item affix "><a href="about-book.html" target="_parent">关于本书</a></li><li class="chapter-item affix "><a href="into-rust.html" target="_parent">进入 Rust 编程世界</a></li><li class="chapter-item affix "><a href="first-try/sth-you-should-not-do.html" target="_parent">避免从入门到放弃</a></li><li class="chapter-item affix "><a href="community.html" target="_parent">社区和锈书</a></li><li class="chapter-item affix "><li class="spacer"></li><li class="chapter-item affix "><a href="beat-ai.html" target="_parent">BeatAI: 工程师 AI 入门圣经</a></li><li class="chapter-item affix "><li class="part-title">Rust 语言基础学习</li><li class="chapter-item affix "><li class="spacer"></li><li class="chapter-item "><a href="first-try/intro.html" target="_parent"><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" target="_parent"><strong aria-hidden="true">1.1.</strong> 安装 Rust 环境</a></li><li class="chapter-item "><a href="first-try/editor.html" target="_parent"><strong aria-hidden="true">1.2.</strong> 墙推 VSCode!</a></li><li class="chapter-item "><a href="first-try/cargo.html" target="_parent"><strong aria-hidden="true">1.3.</strong> 认识 Cargo</a></li><li class="chapter-item "><a href="first-try/hello-world.html" target="_parent"><strong aria-hidden="true">1.4.</strong> 不仅仅是 Hello world</a></li><li class="chapter-item "><a href="first-try/slowly-downloading.html" target="_parent"><strong aria-hidden="true">1.5.</strong> 下载依赖太慢了?</a></li></ol></li><li class="chapter-item "><a href="basic/intro.html" target="_parent"><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" target="_parent"><strong aria-hidden="true">2.1.</strong> 变量绑定与解构</a></li><li class="chapter-item "><a href="basic/base-type/index.html" target="_parent"><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" target="_parent"><strong aria-hidden="true">2.2.1.</strong> 数值类型</a></li><li class="chapter-item "><a href="basic/base-type/char-bool.html" target="_parent"><strong aria-hidden="true">2.2.2.</strong> 字符、布尔、单元类型</a></li><li class="chapter-item "><a href="basic/base-type/statement-expression.html" target="_parent"><strong aria-hidden="true">2.2.3.</strong> 语句与表达式</a></li><li class="chapter-item "><a href="basic/base-type/function.html" target="_parent"><strong aria-hidden="true">2.2.4.</strong> 函数</a></li></ol></li><li class="chapter-item "><a href="basic/ownership/index.html" target="_parent"><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" target="_parent"><strong aria-hidden="true">2.3.1.</strong> 所有权</a></li><li class="chapter-item "><a href="basic/ownership/borrowing.html" target="_parent"><strong aria-hidden="true">2.3.2.</strong> 引用与借用</a></li></ol></li><li class="chapter-item "><a href="basic/compound-type/intro.html" target="_parent"><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" target="_parent"><strong aria-hidden="true">2.4.1.</strong> 字符串与切片</a></li><li class="chapter-item "><a href="basic/compound-type/tuple.html" target="_parent"><strong aria-hidden="true">2.4.2.</strong> 元组</a></li><li class="chapter-item "><a href="basic/compound-type/struct.html" target="_parent"><strong aria-hidden="true">2.4.3.</strong> 结构体</a></li><li class="chapter-item "><a hre
|
||
|
</body>
|
||
|
</html>
|