検索
Results of 1 - 8 of about 8 for バイナリ (0.011 sec.)
- Conventions - Rust By Example 日本語版 13646
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
l └── src └── main.rs しかし同じプロジェクトで2つのバイナリが欲しいとします。その場合は? cargo はこれもサポート...
しています。以前見た通りデフォルトのバイナリ名は main ですが、 bin/ ディレクトリに置くことで他の...
├── main.rs └── bin └── my_other_bin.rs デフォルトバイナリや他のバイナリではなく、このバイナリをコンパイルや実...
in フラグを渡します。ここでは my_other_bin が対象のバイナリの名前です。 バイナリの追加に加えて、 cargo はベンチ...
- https://man.plustar.jp/rust/example/cargo/conventions.html - [similar]
- Hello World - Rust By Example 日本語版 9362
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
n the compiled binary is called // コンパイルされたバイナリが実行されるとこの関数が呼び出されます // Print text...
文字列をコンソールにプリントするための マクロ です。 バイナリファイルは rustc と呼ばれるRustのコンパイラを用いて生...
rustc hello.rs すると hello という名前の実行可能なバイナリファイルができます。 $ ./hello Hello World! 演習 上に...
- https://man.plustar.jp/rust/example/hello.html - [similar]
- クレート - Rust By Example 日本語版 8693
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
いに独立にコンパイルされるということです。 クレートはバイナリあるいはライブラリ形式でコンパイルされることが可能で...
す。デフォルトでは rustc はクレートからバイナリを作り出しますが、この振る舞いは --crate-type フラグ...
- https://man.plustar.jp/rust/example/crates.html - [similar]
- Dependencies - Rust By Example 日本語版 8495
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
トを新しく作るには下記のようにします。 # A binary # バイナリ cargo new foo # OR A library # またはライブラリ ca...
new --lib foo この章の残りでは、ライブラリではなくバイナリを作ることを想定しますが、コンセプトはすべて同じです...
- https://man.plustar.jp/rust/example/cargo/deps.html - [similar]
- クレート - Rust By Example 日本語版 8025
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
e_type アトリビュートは、そのクレートがライブラリ、バイナリのいずれにコンパイルされるべきかをコンパイラに伝える...
- https://man.plustar.jp/rust/example/attribute/crate.html - [similar]
- アトリビュート - Rust By Example 日本語版 8025
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
コンパイル時の条件分岐 クレート名、バージョン、種類(バイナリか、ライブラリか)の設定 リント の無効化 コンパイラ付...
- https://man.plustar.jp/rust/example/attribute.html - [similar]
- Rust By Example 日本語版 8025
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
n the compiled binary is called // コンパイルされたバイナリが実行されるとこの関数が呼び出されます // Print text...
文字列をコンソールにプリントするための マクロ です。 バイナリファイルは rustc と呼ばれるRustのコンパイラを用いて生...
rustc hello.rs すると hello という名前の実行可能なバイナリファイルができます。 $ ./hello Hello World! 演習 上に...
- https://man.plustar.jp/rust/example/print.html - [similar]
- スタティックライフタイム - Rust By Example 日本語版 7898
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
と、参照は使用することが // できなくなるが、データはバイナリ中に残る。 } { // Make an integer to use for `coerce...
- https://man.plustar.jp/rust/example/scope/lifetime/static_lifetime.html - [similar]
PREV
1
NEXT