gpt4 book ai didi

rust - 你如何创建一个 Box,或者一般情况下一个装箱的未调整大小的值?

转载 作者:行者123 更新时间:2023-11-29 07:56:29 25 4
gpt4 key购买 nike

我有以下代码

extern crate rand;
use rand::Rng;

pub struct Randomizer {
rand: Box<Rng>,
}

impl Randomizer {
fn new() -> Self {
let mut r = Box::new(rand::thread_rng()); // works
let mut cr = Randomizer { rand: r };
cr
}

fn with_rng(rng: &Rng) -> Self {
let mut r = Box::new(*rng); // doesn't work
let mut cr = Randomizer { rand: r };
cr
}
}

fn main() {}

它提示

error[E0277]: the trait bound `rand::Rng: std::marker::Sized` is not satisfied
--> src/main.rs:16:21
|
16 | let mut r = Box::new(*rng);
| ^^^^^^^^ `rand::Rng` does not have a constant size known at compile-time
|
= help: the trait `std::marker::Sized` is not implemented for `rand::Rng`
= note: required by `<std::boxed::Box<T>>::new`

我不明白为什么需要 SizedRng什么时候Box<T>不会将此强加于 T .

最佳答案

关于 Sized 特性和边界的更多信息 - 这是一个相当特殊的特性,即 implicitly added每个函数,这就是为什么你没有在 Box::new 的原型(prototype)中看到它的原因:

fn new(x: T) -> Box<T>

请注意,它按值(或移动)获取 x,因此您需要知道它有多大才能调用该函数。

相比之下,Box 类型本身 需要Sized;它使用(再次特殊的)特性绑定(bind) ?Sized,这意味着“选择退出默认的 Sized 绑定(bind)”:

pub struct Box<T> where T: ?Sized(_);

如果仔细查看,有一种方法可以创建类型未调整大小的 Box:

impl<T> Box<T> where T: ?Sized
....
unsafe fn from_raw(raw: *mut T) -> Box<T>

所以从不安全的代码,你可以从一个原始指针创建一个。从那时起,所有正常的事情都会起作用。

关于rust - 你如何创建一个 Box<dyn Trait>,或者一般情况下一个装箱的未调整大小的值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39216874/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com