検索

phrase: max: clip:
target: order:
Results of 1 - 2 of about 2 for boxed (0.006 sec.)
Box, スタックとヒープ - Rust By Example 日本語版 11228
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... origin() -> Point { Point { x: 0.0, y: 0.0 } } fn boxed_origin() -> Box<Point> { // Allocate this point on ... rectangle // ヒープ上に割り当てられたRectangle let boxed_rectangle: Box<Rectangle> = Box::new(Rectangle { t ... , y: -4.0 }, }); // The output of functions can be boxed // 関数の返り値をボックス化 let boxed_point: Box<P ... を挟む let box_in_a_box: Box<Box<Point>> = Box::new(boxed_origin()); println!("Point occupies {} bytes on th ...
https://man.plustar.jp/rust/example/std/box.html - [similar]
借用 - Rust By Example 日本語版 7485
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... はボックスの所有権を奪い、破棄する。 fn eat_box_i32(boxed_i32: Box<i32>) { println!("Destroying box that con ... tains {}", boxed_i32); } // This function borrows an i32 // この関数 ... is: {}", borrowed_i32); } fn main() { // Create a boxed i32, and a stacked i32 // ボックス化された整数を作 ... 成 let boxed_i32 = Box::new(5_i32); let stacked_i32 = 6_i32; // ...
https://man.plustar.jp/rust/example/scope/borrow.html - [similar]
PREV 1 NEXT