検索
Results of 1 - 10 of about 17 for 整数 (0.026 sec.)
- リテラルとオペレータ - Rust By Example 日本語版 14173
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
Ayu Rust By Example 日本語版 リテラルとオペレータ 整数 1 、浮動小数点 1.2 、文字( char ) 'a' 、文字列 "ab...
リテラルを使用することで明示することが可能です。 また整数型の場合、リテラルの代わりにプレフィックスに 0x 、 0...
りません。現在の仕様では、リテラルが32ビット符号無し整数であることを伝える場合、 u32 サフィックスを、符号付き...
32ビット整数であれば i32 を使用します。 Rustで使用可能な演算子と...
- https://man.plustar.jp/rust/example/primitives/literals.html - [similar]
- Rust By Example 日本語版 11190
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
プログラムから始めましょう。 基本データ型 - 符号付き整数や符号無し整数、その他の基本データ型について学びまし...
トしています。以下がその例です。 スカラー型 符号付き整数: i8 , i16 , i32 , i64 , i128 , isize (ポインタのサ...
イズ) 符号無し整数: u8 , u16 , u32 , u64 , u128 , usize (ポインタのサ...
可能です。指定しない場合デフォルトになります。例えば整数は i32 が、浮動小数点は f64 がデフォルトです。また、...
- https://man.plustar.jp/rust/example/print.html - [similar]
- 基本データ型 - Rust By Example 日本語版 9569
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
トしています。以下がその例です。 スカラー型 符号付き整数: i8 , i16 , i32 , i64 , i128 , isize (ポインタのサ...
イズ) 符号無し整数: u8 , u16 , u32 , u64 , u128 , usize (ポインタのサ...
可能です。指定しない場合デフォルトになります。例えば整数は i32 が、浮動小数点は f64 がデフォルトです。また、...
- https://man.plustar.jp/rust/example/primitives.html - [similar]
- RAII - Rust By Example 日本語版 9345
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
eate_box() { // Allocate an integer on the heap // 整数をヒープ上に確保 let _box1 = Box::new(3i32); // `_bo...
fn main() { // Allocate an integer on the heap // 整数をヒープ上に確保 let _box2 = Box::new(5i32); // A ne...
したスコープ { // Allocate an integer on the heap // 整数をヒープ上に確保 let _box3 = Box::new(4i32); // `_bo...
- https://man.plustar.jp/rust/example/scope/raii.html - [similar]
- C言語ライクな列挙型 - Rust By Example 日本語版 8655
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
iminator (starts at 0) // 値を明示しない場合、0から整数が順に入る。 enum Number { Zero, One, Two, } // enum...
`enums` can be cast as integers. // 列挙型の中身を整数としてキャストする。 println!("zero is {}", Number::...
- https://man.plustar.jp/rust/example/custom_types/enum/c_like.html - [similar]
- Introduction - Rust By Example 日本語版 8431
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
プログラムから始めましょう。 基本データ型 - 符号付き整数や符号無し整数、その他の基本データ型について学びまし...
- https://man.plustar.jp/rust/example/index.html - [similar]
- 所有権とムーブ - Rust By Example 日本語版 8431
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
_Stack_ allocated integer // _スタック_上に置かれた整数 let x = 5u32; // *Copy* `x` into `y` - no resource...
to a _heap_ allocated integer // `a`は_ヒープ_上の整数へのポインタ let a = Box::new(5i32); println!("a con...
- https://man.plustar.jp/rust/example/scope/move.html - [similar]
- ハッシュマップ - Rust By Example 日本語版 8431
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
t By Example 日本語版 ハッシュマップ ベクタ型が値を整数のインデックスで保持するのに対し、 HashMap ではキーで...
保持します。 HashMap のキーはブーリアン、整数、文字列等の Eq あるいは Hash トレイトを保持する型な...
- https://man.plustar.jp/rust/example/std/hash.html - [similar]
- panic! - Rust By Example 日本語版 8431
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
す。 // Re-implementation of integer division (/) // 整数の除法(/)の再実装 fn division(dividend: i32, divisor...
fn main() { // Heap allocated integer // ヒープ上の整数 let _x = Box::new(0i32); // This operation will tr...
- https://man.plustar.jp/rust/example/std/panic.html - [similar]
- 型キャスティング - Rust By Example 日本語版 8431
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
)は可能です。その場合 as キーワードを使用します。 整数型から整数型へ型変換する場合、C言語で可能なケースの場...
- https://man.plustar.jp/rust/example/types/cast.html - [similar]