検索
Results of 1 - 10 of about 193 for 文字列 (0.004 sec.)
- 文字列 - Rust By Example 日本語版 17057
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...❱ 19.1. Box, スタックとヒープ 19.2. ベクタ型 19.3. 文字列 19.4. Option 19.5. Result ❱ 19.5.1. ? 19.6. panic!...fault) Rust Coal Navy Ayu Rust By Example 日本語版 文字列 Rustには文字列を扱う型が2つあります。 String と &s...ありません。) // read only memory上に割り当てられた文字列への参照 let pangram: &'static str = "the quick brow...is allocated // 単語を逆順にイテレートする。新しい文字列の割り当ては起こらない。 println!("Words in reverse"... - https://man.plustar.jp/rust/example/std/str.html - [similar]
- Rust By Example 日本語版 9159
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...❱ 19.1. Box, スタックとヒープ 19.2. ベクタ型 19.3. 文字列 19.4. Option 19.5. Result ❱ 19.5.1. ? 19.6. panic!...されます // Print text to the console // コンソールに文字列を出力する println!("Hello World!"); } println! は文...が含まれます。 format! : フォーマットされたテキストを文字列(String)型に書き込みます。 print! : format! と同様で...であろうと自動的に置き換えられます。 // 例えば以下は文字列に変換されます println!("{} days", 31); // Without a... - https://man.plustar.jp/rust/example/print.html - [similar]
- フォーマット - Rust By Example 日本語版 8854
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...❱ 19.1. Box, スタックとヒープ 19.2. ベクタ型 19.3. 文字列 19.4. Option 19.5. Result ❱ 19.5.1. ? 19.6. panic!...yu Rust By Example 日本語版 フォーマット これまで、文字列がどのようにフォーマットされるかは フォーマット文字列...ファです。このメソッドは // ここにフォーマットされた文字列を書き込みます。 fn fmt(&self, f: &mut Formatter) ->...rite!`は`format!`に似ていますが、フォーマットされた文字列を // バッファ(第一引数)に書き込みます。 write!(f,... - https://man.plustar.jp/rust/example/hello/print/fmt.html - [similar]
- 識別子 - Rust By Example 日本語版 8550
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...❱ 19.1. Box, スタックとヒープ 19.2. ベクタ型 19.3. 文字列 19.4. Option 19.5. Result ❱ 19.5.1. ? 19.6. panic!...to a string. // `stringify!`というマクロは`ident`を文字列に変える。 println!("You called {:?}()", stringify!(...`識別子に対応する値を引数として取り、 // その結果を文字列としてプリントする。 // `expr`識別子は式に対応する。...o a string. // `stringify!`は式を *そのままの形で* 文字列に変換する println!("{:?} = {:?}", stringify!($expre... - https://man.plustar.jp/rust/example/macros/designators.html - [similar]
- フォーマットしてプリント - Rust By Example 日本語版 8452
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...❱ 19.1. Box, スタックとヒープ 19.2. ベクタ型 19.3. 文字列 19.4. Option 19.5. Result ❱ 19.5.1. ? 19.6. panic!...が含まれます。 format! : フォーマットされたテキストを文字列(String)型に書き込みます。 print! : format! と同様で...であろうと自動的に置き換えられます。 // 例えば以下は文字列に変換されます println!("{} days", 31); // Without a...ite spaces and a "1". // 指定した幅の中に、右寄せで文字列を挿入することができます。 // 以下の例では" 1". とい... - https://man.plustar.jp/rust/example/hello/print.html - [similar]
- Stringとの型変換 - Rust By Example 日本語版 7236
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...❱ 19.1. Box, スタックとヒープ 19.2. ベクタ型 19.3. 文字列 19.4. Option 19.5. Result ❱ 19.5.1. ? 19.6. panic!...println!("{}", circle.to_string()); } Stringの解析 文字列からの型変換において、数値への型変換はよく行われるも...、指定された型に FromStr トレイトが実装されていれば、文字列をその型に変換します。このトレイトは標準ライブラリの... - https://man.plustar.jp/rust/example/conversion/string.html - [similar]
- Hello World - Rust By Example 日本語版 7236
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...❱ 19.1. Box, スタックとヒープ 19.2. ベクタ型 19.3. 文字列 19.4. Option 19.5. Result ❱ 19.5.1. ? 19.6. panic!...されます // Print text to the console // コンソールに文字列を出力する println!("Hello World!"); } println! は文... - https://man.plustar.jp/rust/example/hello.html - [similar]
- open - Rust By Example 日本語版 7236
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...❱ 19.1. Box, スタックとヒープ 19.2. ベクタ型 19.3. 文字列 19.4. Option 19.5. Result ❱ 19.5.1. ? 19.6. panic!...io::Error`の`description`メソッドはエラーを説明する文字列を返す。 Err(why) => panic!("couldn't open {}: {}",...ng, returns `io::Result<usize>` // ファイルの中身を文字列に読み込む。`io::Result<useize>`を返す。 let mut s =... - https://man.plustar.jp/rust/example/std_misc/file/open.html - [similar]
- Path - Rust By Example 日本語版 7236
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...❱ 19.1. Box, スタックとヒープ 19.2. ベクタ型 19.3. 文字列 19.4. Option 19.5. Result ❱ 19.5.1. ? 19.6. panic!...がいくつか使えるようになります。 Path の実態はUTF-8の文字列 ではなく 、バイト型のベクタ( Vec<u8> )であることに...; // Convert the path into a string slice // パスを文字列のスライスに変換する。 match new_path.to_str() { Non... - https://man.plustar.jp/rust/example/std_misc/path.html - [similar]
- 列挙型 - Rust By Example 日本語版 7040
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...❱ 19.1. Box, スタックとヒープ 19.2. ベクタ型 19.3. 文字列 19.4. Option 19.5. Result ❱ 19.5.1. ? 19.6. panic!...ned `String` from a string slice. // `to_owned()`は文字列スライスから所有権のある`String`を作成する let paste...読んでください。 参照 マッチ( match ) , 関数( fn ) , 文字列( String ) , "Type alias enum variants" RFC 関連キー... - https://man.plustar.jp/rust/example/custom_types/enum.html - [similar]