検索

phrase: max: clip:
target: order:
Results of 1 - 6 of about 6 for Rc (0.013 sec.)
リーク 13088
はじめに 1. 安全と危険のご紹介 1.1. 安全と危険の相互作用 1.2. Unsafe と連携する 2. データレイアウ ... 9.10. サイズが 0 の型を扱う 9.11. Final Code 10. Arc と Mutex の実装 Light (default) Rust Coal Navy Ayu ... つの 興味深い例について着目していきます。 vec::Drain Rc thread::scoped::JoinGuard Drain drain は、コンテナ ... 引き起こしてしまうことを、 リークの増幅 と呼びます。 Rc Rc は興味深いケースです。なぜなら、ひと目見ただけで ... は、 Rc がプロキシな値とは全く見えないからです。 結局、 Rc ...
https://man.plustar.jp/rust/nomicon/leaking.html - [similar]
Send and Sync 9249
はじめに 1. 安全と危険のご紹介 1.1. 安全と危険の相互作用 1.2. Unsafe と連携する 2. データレイアウ ... 9.10. サイズが 0 の型を扱う 9.11. Final Code 10. Arc と Mutex の実装 Light (default) Rust Coal Navy Ayu ... sn't Sync (and therefore Cell and RefCell aren't). Rc isn't Send or Sync (because the refcount is shared ... and unsynchronized). Rc and UnsafeCell are very fundamentally not thread-s ... thinking hard about thread safety. In the case of Rc, we have a nice example of a type that contains a ...
https://man.plustar.jp/rust/nomicon/send-and-sync.html - [similar]
リファレンス 8499
はじめに 1. 安全と危険のご紹介 1.1. 安全と危険の相互作用 1.2. Unsafe と連携する 2. データレイアウ ... 9.10. サイズが 0 の型を扱う 9.11. Final Code 10. Arc と Mutex の実装 Light (default) Rust Coal Navy Ayu ... 独占的に所有されているわけではありません。 例えば Rc によって、 共有 所有権という概念がでてきます。 値が ... アクセスを提供します。 この効果を使った興味深い例が Rc 自身です。もし Rc の参照カウントが 1 なら、 内部状 ...
https://man.plustar.jp/rust/nomicon/references.html - [similar]
所有権に基づいたリソース管理 8042
はじめに 1. 安全と危険のご紹介 1.1. 安全と危険の相互作用 1.2. Unsafe と連携する 2. データレイアウ ... 9.10. サイズが 0 の型を扱う 9.11. Final Code 10. Arc と Mutex の実装 Light (default) Rust Coal Navy Ayu ... 所有権に基づいたリソース管理(Ownership Based Resource Management, OBRM)の危険性について OBRM(またの名を ... RAII: Resource Acquisition Is Initialization)とは、Rustにおいて ... も一般的な「リソース」は単なる メモリ です。 Box 、 Rc 、その他 std::collections の諸々全ては、メモリの管 ...
https://man.plustar.jp/rust/nomicon/obrm.html - [similar]
型強制 7951
はじめに 1. 安全と危険のご紹介 1.1. 安全と危険の相互作用 1.2. Unsafe と連携する 2. データレイアウ ... 9.10. サイズが 0 の型を扱う 9.11. Final Code 10. Arc と Mutex の実装 Light (default) Rust Coal Navy Ayu ... から *mut T アンサイジング: T から U 但し T が CoerceUnsized<U> を実装している場合 参照外しの型強制: 型 ... に参照外しされる場合 (例: T: Deref<Target=U> ) CoerceUnsized<Pointer<U>> for Pointer<T> where T: Unsize ... <U> は 全てのポインタ型 (Box や Rc のようなスマートポインタを含む) で実装されています ...
https://man.plustar.jp/rust/nomicon/coercions.html - [similar]
print.html 7951
はじめに 1. 安全と危険のご紹介 1.1. 安全と危険の相互作用 1.2. Unsafe と連携する 2. データレイアウ ... 9.10. サイズが 0 の型を扱う 9.11. Final Code 10. Arc と Mutex の実装 Light (default) Rust Coal Navy Ayu ... 独占的に所有されているわけではありません。 例えば Rc によって、 共有 所有権という概念がでてきます。 値が ... アクセスを提供します。 この効果を使った興味深い例が Rc 自身です。もし Rc の参照カウントが 1 なら、 内部状 ... ), then 'a is a subtype of 'b . This is a large source of confusion, because it seems intuitively backwa ...
https://man.plustar.jp/rust/nomicon/print.html - [similar]
PREV 1 NEXT