//https://kaisery.github.io/trpl-zh-cn/ch03-02-data-types.html
fn main() {
println!("Hello, world!");
//標量(scalar)型別代表一個單獨的值。Rust 有四種基本的標量型別:整型、浮點型、布林型別和字元型別。
// 你可能在其他語言中見過它們。讓我們深入瞭解它們在 Rust 中是如何工作的。
//數值型別 整型 浮點
let a = 2;
println!("a :{a}");
let b = 2.0;
let c:f32 = 3.0;
let sum = 5 + 10;
let diff = 95.5-4.3;
let product = 4*30;
let quotient = 56.7/32.2;
let truncated = -5/3;
let remainder = 43%5;
println!("remainder :{remainder}");
//布林型別
let t = true;
let f:bool = false;
println!("t:{t} f:{f}");
//字元型別
let str1 = 'z';
let z_al :char = 'Z';
let black_hat = '🎩';
println!("str1:{str1} z_al:{z_al} black_hat:{black_hat}");
}
Rust 01
相關文章
- Rust-01 啟航Rust
- Rust 程式設計小專案:WebServer 01Rust程式設計WebServer
- 01_Rust開發環境準備Rust開發環境
- 2021-01-01
- 2021-01-01 605
- 01
- Rust : RUST_BACKTRACE=1錯誤提示Rust
- yangwenmai/learning-rust: Rust 學習之路AIRust
- [Rust] OwnershipRust
- [Rust] GenericRust
- awesome rustRust
- Rust語言4歲了 | rust-langRust
- 文盤rust--使用 Rust 構建RAGRust
- Rust是如何用Rust編寫的? - RedditRust
- GoCN每日新聞(2020-01-01)Go
- day01-SpringMVC基本介紹-01SpringMVC
- 物件導向-2021-01-04-01物件
- rust-unofficial/awesome-rust:Rust開原始碼和資源的精選列表。Rust原始碼
- Numpy 01
- 01 序言
- day 01
- JVM—01JVM
- 【cuda】- 01
- AWS - [01]
- 01 Tree
- docker -01Docker
- rust-admin 對 Rust 的第一印象Rust
- Go技術日報(2021-01-01)Go
- implementing OOP in rustOOPRust
- rust安裝Rust
- rust ntex serverRustServer
- Rust克隆陷阱?Rust
- Rust 常用庫Rust
- Memory Management in RustRust
- 初語-01
- python-01Python
- linux命令-01Linux
- 01 - Python 起源Python