検索
Results of 1 - 1 of about 1 for Node (0.004 sec.)
- 循環参照は、メモリをリークすることもある - Rust 日本語版 9414
- The Rust Programming Language 日本語版 まえがき はじめに 1. 事始め 1.1. インストール 1.2. Hello,
...
を作りましょう。 木データ構造を作る: 子ノードのある Node 手始めに子ノードを知っているノードのある木を構成し...
ます。独自の i32 値と子供の Node 値への参照を抱える Node という構造体を作ります: フ...
c; use std::cell::RefCell; #[derive(Debug)] struct Node { value: i32, children: RefCell<Vec<Rc<Node>>>, }...
} Node に子供を所有してほしく、木の各 Node に直接アクセス...
- https://man.plustar.jp/rust/book/ch15-06-reference-cycles.html - [similar]
PREV
1
NEXT