「Programming Rust筆記」修訂間的差異

跳至導覽 跳至搜尋
增加 229 位元組 、 2024年9月3日 (星期二)
無編輯摘要
行 63: 行 63:
* std::process::exit(1); 輸出錯誤回傳值1。
* std::process::exit(1); 輸出錯誤回傳值1。
* println!("...{}...{:?}", a, b); // {} 和{...}都是template-string。
* println!("...{}...{:?}", a, b); // {} 和{...}都是template-string。
rust支援concurrency。


使用mutex,並且此處顯示多執行緒的撰寫
all rust functions are thread-safe
loop{x = x * x;}
上文是loop語句
num library有複數。
Complex<T>{
re:T, //實部
im:T // 虛部
}
[[category:資訊]]
[[category:資訊]]

導覽選單