<!DOCTYPE html>
<html>
<head>
<!-- hexo-inject:begin --><!-- hexo-inject:end --><meta charset="utf-8">
<meta name="description" content="AI | NLP | 人工智能 | 哲学 | 自然语言处理 | 机器学习" />
<title>The Rust Programming Language Brief Note (Vol1-Basic) | Yam</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta name="description" content="1 Getting Started3 Common Concepts3-1 Variables and Mutability3-1-1 Variables and Constants3-1-2 Shadowing3-2 Data Types3-2-1 Scalar3-2-1-1 Integer3-2-1-2 Numeric3-2-1-3 Boolean3-2-1-4 Character3-2-2">
<meta name="keywords" content="Rust">
<meta property="og:type" content="article">
<meta property="og:title" content="The Rust Programming Language Brief Note (Vol1-Basic)">
<meta property="og:url" content="https://www.yam.gift/2019/12/31/Rust/RPL/2019-12-31-RPL-Brief-Note-Vol1-Basic/index.html">
<meta property="og:site_name" content="Yam">
<meta property="og:description" content="1 Getting Started3 Common Concepts3-1 Variables and Mutability3-1-1 Variables and Constants3-1-2 Shadowing3-2 Data Types3-2-1 Scalar3-2-1-1 Integer3-2-1-2 Numeric3-2-1-3 Boolean3-2-1-4 Character3-2-2">
<meta property="og:locale" content="default">
<meta property="og:image" content="https://doc.rust-lang.org/book/img/trpl04-01.svg">
<meta property="og:image" content="https://doc.rust-lang.org/book/img/trpl04-04.svg">
<meta property="og:image" content="https://doc.rust-lang.org/book/img/trpl04-05.svg">
<meta property="og:updated_time" content="2021-06-06T14:44:24.210Z">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="The Rust Programming Language Brief Note (Vol1-Basic)">
<meta name="twitter:description" content="1 Getting Started3 Common Concepts3-1 Variables and Mutability3-1-1 Variables and Constants3-1-2 Shadowing3-2 Data Types3-2-1 Scalar3-2-1-1 Integer3-2-1-2 Numeric3-2-1-3 Boolean3-2-1-4 Character3-2-2">
<meta name="twitter:image" content="https://doc.rust-lang.org/book/img/trpl04-01.svg">
<link rel="icon" href="/css/images/favicon.ico">
<link rel="stylesheet" href="/css/style.css">
<!-- baidu webmaster push -->
<link rel="alternate" href="/atom.xml" title="Yam" type="application/atom+xml"><!-- hexo-inject:begin --><!-- hexo-inject:end -->
</head>
<body class="home blog custom-background custom-font-enabled single-author">
<!-- hexo-inject:begin --><!-- hexo-inject:end --><div id="page" class="hfeed site">
<header id="masthead" class="site-header" role="banner">
<hgroup>
<h1 class="site-title">
<a href="/" title="Yam" rel="home">Yam</a>
</h1>
<h2 class="site-description">
<a href="/" id="subtitle">Feeling, Coding, Thinking</a>
</h2>
</hgroup>
<nav id="site-navigation" class="main-navigation" role="navigation">
<button class="menu-toggle">菜单</button>
<a class="assistive-text" href="/#content" title="跳至内容">跳至内容</a><!--TODO-->
<div class="menu-main-container">
<ul id="menu-main" class="nav-menu">
<li class="menu-item menu-item-type-post_type menu-item-object-page"><a href="/">Home</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page"><a href="/series/">Series</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page"><a href="/archives/">Archives</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page"><a href="/about/">About</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page"><a href="https://github.com/hscspring">Projects</a></li>
</ul>
</div>
</nav>
</header>
<div id="main" class="wrapper">
<div id="primary" class="site-content"><div id="content" role="main"><article id="post-Rust/RPL/2019-12-31-RPL-Brief-Note-Vol1-Basic" class="post-Rust/RPL/2019-12-31-RPL-Brief-Note-Vol1-Basic post type-post status-publish format-standard hentry">
<!---->
<header class="entry-header">
<h1 class="entry-title article-title">
The Rust Programming Language Brief Note (Vol1-Basic)
</h1>
<!-- <div class="comments-link">
<a href="javascript:void(0);" data-url="https://www.yam.gift/2019/12/31/Rust/RPL/2019-12-31-RPL-Brief-Note-Vol1-Basic/" data-id="clryposum01f1sxbzef65eipg" class="leave-reply bdsharebuttonbox" data-cmd="more">undefined</a>
</div> --><!-- .comments-link -->
</header><!-- .entry-header -->
<div class="entry-content">
<!-- Table of Contents -->
<p><div class="toc"><ul class="toc-item"><li><span><a href="#1-Getting-Started" data-toc-modified-id="1-Getting-Started-1">1 Getting Started</a></span></li><li><span><a href="#3-Common-Concepts" data-toc-modified-id="3-Common-Concepts-2">3 Common Concepts</a></span><ul class="toc-item"><li><span><a href="#3-1-Variables-and-Mutability" data-toc-modified-id="3-1-Variables-and-Mutability-2.1">3-1 Variables and Mutability</a></span><ul class="toc-item"><li><span><a href="#3-1-1-Variables-and-Constants" data-toc-modified-id="3-1-1-Variables-and-Constants-2.1.1">3-1-1 Variables and Constants</a></span></li><li><span><a href="#3-1-2-Shadowing" data-toc-modified-id="3-1-2-Shadowing-2.1.2">3-1-2 Shadowing</a></span></li></ul></li><li><span><a href="#3-2-Data-Types" data-toc-modified-id="3-2-Data-Types-2.2">3-2 Data Types</a></span><ul class="toc-item"><li><span><a href="#3-2-1-Scalar" data-toc-modified-id="3-2-1-Scalar-2.2.1">3-2-1 Scalar</a></span><ul class="toc-item"><li><span><a href="#3-2-1-1-Integer" data-toc-modified-id="3-2-1-1-Integer-2.2.1.1">3-2-1-1 Integer</a></span></li><li><span><a href="#3-2-1-2-Numeric" data-toc-modified-id="3-2-1-2-Numeric-2.2.1.2">3-2-1-2 Numeric</a></span></li><li><span><a href="#3-2-1-3-Boolean" data-toc-modified-id="3-2-1-3-Boolean-2.2.1.3">3-2-1-3 Boolean</a></span></li><li><span><a href="#3-2-1-4-Character" data-toc-modified-id="3-2-1-4-Character-2.2.1.4">3-2-1-4 Character</a></span></li></ul></li><li><span><a href="#3-2-2-Compound-Types" data-toc-modified-id="3-2-2-Compound-Types-2.2.2">3-2-2 Compound Types</a></span><ul class="toc-item"><li><span><a href="#3-2-2-1-Tuple" data-toc-modified-id="3-2-2-1-Tuple-2.2.2.1">3-2-2-1 Tuple</a></span></li><li><span><a href="#3-2-2-2-Array" data-toc-modified-id="3-2-2-2-Array-2.2.2.2">3-2-2-2 Array</a></span></li></ul></li></ul></li><li><span><a href="#3-3-Functions" data-toc-modified-id="3-3-Functions-2.3">3-3 Functions</a></span><ul class="toc-item"><li><span><a href="#3-3-1-Parameters" data-toc-modified-id="3-3-1-Parameters-2.3.1">3-3-1 Parameters</a></span></li><li><span><a href="#3-3-2-Statements-and-Expressions" data-toc-modified-id="3-3-2-Statements-and-Expressions-2.3.2">3-3-2 Statements and Expressions</a></span></li><li><span><a href="#3-3-3-Return-Values" data-toc-modified-id="3-3-3-Return-Values-2.3.3">3-3-3 Return Values</a></span></li></ul></li><li><span><a href="#3-4-Control-Flow" data-toc-modified-id="3-4-Control-Flow-2.4">3-4 Control Flow</a></span><ul class="toc-item"><li><span><a href="#3.4.1-if" data-toc-modified-id="3.4.1-if-2.4.1">3.4.1 if</a></span></li><li><span><a href="#3-4-2-Repetition" data-toc-modified-id="3-4-2-Repetition-2.4.2">3-4-2 Repetition</a></span><ul class="toc-item"><li><span><a href="#3-4-2-1-loop" data-toc-modified-id="3-4-2-1-loop-2.4.2.1">3-4-2-1 loop</a></span></li><li><span><a href="#3-4-2-2-while" data-toc-modified-id="3-4-2-2-while-2.4.2.2">3-4-2-2 while</a></span></li><li><span><a href="#3-4-2-3-for" data-toc-modified-id="3-4-2-3-for-2.4.2.3">3-4-2-3 for</a></span></li></ul></li></ul></li></ul></li><li>
没有合适的资源?快使用搜索试试~ 我知道了~
温馨提示
人工智能学习总结成果,希望可以帮到大家,有疑问欢迎随时沟通~ 人工智能学习总结成果,希望可以帮到大家,有疑问欢迎随时沟通~ 人工智能学习总结成果,希望可以帮到大家,有疑问欢迎随时沟通~ 人工智能学习总结成果,希望可以帮到大家,有疑问欢迎随时沟通~ 人工智能学习总结成果,希望可以帮到大家,有疑问欢迎随时沟通~
资源推荐
资源详情
资源评论
收起资源包目录
《人工智能》--AI NLP 人工智能 自然语言处理 机器学习 哲学.zip (714个子文件)
CNAME 9B
style.css 39KB
jquery.fancybox.css 5KB
jquery.fancybox-buttons.css 2KB
jquery.fancybox-thumbs.css 735B
fancybox_loading@2x.gif 14KB
fancybox_loading.gif 6KB
blank.gif 43B
index.html 424KB
index.html 318KB
index.html 294KB
index.html 197KB
index.html 185KB
index.html 180KB
index.html 178KB
index.html 175KB
index.html 171KB
index.html 166KB
index.html 163KB
index.html 144KB
index.html 143KB
index.html 138KB
index.html 130KB
index.html 123KB
index.html 122KB
index.html 118KB
index.html 118KB
index.html 116KB
index.html 112KB
index.html 111KB
index.html 111KB
index.html 107KB
index.html 104KB
index.html 103KB
index.html 100KB
index.html 99KB
index.html 98KB
index.html 97KB
index.html 95KB
index.html 95KB
index.html 94KB
index.html 94KB
index.html 93KB
index.html 92KB
index.html 91KB
index.html 91KB
index.html 90KB
index.html 88KB
index.html 87KB
index.html 86KB
index.html 86KB
index.html 85KB
index.html 83KB
index.html 83KB
index.html 82KB
index.html 82KB
index.html 82KB
index.html 81KB
index.html 81KB
index.html 81KB
index.html 80KB
index.html 80KB
index.html 80KB
index.html 79KB
index.html 79KB
index.html 79KB
index.html 78KB
index.html 77KB
index.html 77KB
index.html 76KB
index.html 76KB
index.html 75KB
index.html 75KB
index.html 75KB
index.html 75KB
index.html 74KB
index.html 73KB
index.html 73KB
index.html 73KB
index.html 72KB
index.html 72KB
index.html 72KB
index.html 72KB
index.html 72KB
index.html 72KB
index.html 72KB
index.html 71KB
index.html 71KB
index.html 70KB
index.html 70KB
index.html 68KB
index.html 68KB
index.html 68KB
index.html 68KB
index.html 68KB
index.html 67KB
index.html 67KB
index.html 67KB
index.html 66KB
index.html 66KB
共 714 条
- 1
- 2
- 3
- 4
- 5
- 6
- 8
资源评论
季风泯灭的季节
- 粉丝: 1863
- 资源: 3371
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- 小组作业4开关电源设计要求-新.docx
- 技术资料分享fat文件系统原理很好的技术资料.zip
- C#进销存仓库管理系统源码 BS进销存源码数据库 SQL2008源码类型 WebForm
- 技术资料分享FAT文件系统的组织结构很好的技术资料.zip
- 技术资料分享FATFS文件系统的移植很好的技术资料.zip
- 技术资料分享FatFs使用说明-基于SmartARMCortexM3-1700很好的技术资料.zip
- 技术资料分享FATFS浅谈很好的技术资料.zip
- 技术资料分享Fatfs经典资料很好的技术资料.zip
- 技术资料分享FAT32文件系统详解很好的技术资料.zip
- 技术资料分享FAT32简单教材很好的技术资料.zip
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功