検索
Results of 1 - 10 of about 16 for ミュータブル (0.025 sec.)
- ミュータビリティ - Rust By Example 日本語版 13984
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
Navy Ayu Rust By Example 日本語版 ミュータビリティ ミュータブルなデータは &mut T でミュータブルに(変更可能な形で)...
借用することができます。これは ミュータブルな参照 と呼ばれ、読み込み・書き込みの権限を借用者に与...
えます。対照的に &T はデータをイミュータブルな参照を介して借用し、借用した側はデータを読み込みは...
table book and changes `year` to 2014 // この関数はミュータブルなBook型へのミュータブルなリファレンスを取り、 // `y...
- https://man.plustar.jp/rust/example/scope/borrow/mut.html - [similar]
- エイリアス - Rust By Example 日本語版 11454
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
mple 日本語版 エイリアス データは一度にいくつでもイミュータブルに借用することができますが、その間オリジナルのデータ...
をミュータブルに借用することはできません。一方でミュータブルな借用...
きません。オリジナルのデータをもう一度借用できるのはミュータブルな参照が最後に使われた場所より あとで なければいけま...
// borrowed as immutable. // エラー!pointはすでにイミュータブルに借用されているため、 // ミュータブルに借用すること...
- https://man.plustar.jp/rust/example/scope/borrow/alias.html - [similar]
- Rust By Example 日本語版 9721
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
カスタム型 - struct と enum について。 変数の束縛 - ミュータブルな束縛、スコープ、シャドーイングについて。 型 - 型を...
; // A mutable variable's value can be changed. // ミュータブルな変数は値を変更できる let mut mutable = 12; // Muta...
ble `i32` // ミュータブルな `i32`. mutable = 21; // Error! The type of a vari...
able can't be changed. // エラー! ミュータブルな変数でも型は不変 mutable = true; // Variables can...
- https://man.plustar.jp/rust/example/print.html - [similar]
- 要素の捕捉 - Rust By Example 日本語版 8837
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
以下の形で取得することができます。 リファレンス: &T ミュータブルなリファレンス: &mut T 値そのもの: T クロージャは出来...
immutable reference to `color`. // `color`を再びイミュータブルで借用することができる。 // これはクロージャが`color...
`に対するイミュータブルな参照しか保持しないからである。 let _reborrow = &co...
る。 // // `inc`には`mut`をつける必要がある。なぜならミュータブルな型が // 中で使用されているからである。ミュータブル...
- https://man.plustar.jp/rust/example/fn/closures/capture.html - [similar]
- ミュータビリティ - Rust By Example 日本語版 8802
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
mple 日本語版 ミュータビリティ 変数はデフォルトでイミュータブル(変更不可能)ですが mut 構文を使用することでミュータ...
- https://man.plustar.jp/rust/example/variable_bindings/mut.html - [similar]
- 値の凍結 - Rust By Example 日本語版 8439
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
t By Example 日本語版 値の凍結 データを同じ名前のイミュータブルな変数に束縛しなおすと、データは 凍結 されます。 凍結...
したデータは、イミュータブルな束縛がスコープ外になるまで変更できません。 fn main...
// Shadowing by immutable `_mutable_integer` // イミュータブルな`_mutable_integer`でシャドーイングする let _mutabl...
- https://man.plustar.jp/rust/example/variable_bindings/freeze.html - [similar]
- for と range - Rust By Example 日本語版 8283
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
line } iter_mut - この関数はコレクションの各要素をミュータブル(変更可能)で借用するので、コレクションの要素をその...
- https://man.plustar.jp/rust/example/flow_control/for.html - [similar]
- メソッド - Rust By Example 日本語版 8231
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
mut Self` // このメソッドは呼び出し元オブジェクトがミュータブルであることを // 必要とする。`&mut self`は`self: &mut...
uires a mutable // object // エラー!`rectangle`はイミュータブルだがこのメソッドはミュータブルなオブジェクトを // 必...
y! Mutable objects can call mutable methods // OK! ミュータブルなオブジェクトはミュータブルなメソッドを呼び出せる。...
- https://man.plustar.jp/rust/example/fn/methods.html - [similar]
- 基本データ型 - Rust By Example 日本語版 8231
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
; // A mutable variable's value can be changed. // ミュータブルな変数は値を変更できる let mut mutable = 12; // Muta...
ble `i32` // ミュータブルな `i32`. mutable = 21; // Error! The type of a vari...
able can't be changed. // エラー! ミュータブルな変数でも型は不変 mutable = true; // Variables can...
- https://man.plustar.jp/rust/example/primitives.html - [similar]
- refパターン - Rust By Example 日本語版 8231
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
to_x }; // A mutable copy of `point` // `point`へのミュータブルなコピー let mut mutable_point = point; { // `ref` c...
e mutable references. // `ref`は`mut`とともに使い、ミュータブルな参照を取ることもできる。 let Point { x: _, y: ref...
a mutable reference. // `mutable_point`の`y`というミュータブルなフィールドの値を変更する。 *mut_ref_to_y = 1; } pr...
ble tuple that includes a pointer // ポインタを含むミュータブルなタプル let mut mutable_tuple = (Box::new(5u32), 3u...
- https://man.plustar.jp/rust/example/scope/borrow/ref.html - [similar]