「Rust入門」タプル(tup)を宣言、利用するサンプル
環境
Windows 11 Pro 21H2 64bit
rustc 1.62.1
書式
let タプル(tup)名 = (型1の値,型2の値2,..)
タプルは型の異なる要素を含むことができます。
タプルの要素数は固定です。
使用例
fn main() { let tp = (11, "study", 8.68); println!("{} {} {}", tp.0, tp.1, tp.2); }
実行結果
C:\study\rust>rustc test.rs C:\study\rust>.\test.exe 11 study 8.68