gpt4 book ai didi

vector - Rust - 大小在运行时定义的向量

转载 作者:行者123 更新时间:2023-11-29 08:06:57 26 4
gpt4 key购买 nike

如何在 Rust 中创建一个大小在运行时定义的数组?

基本上,您如何在 Rust 中转换以下代码:

void f(int n){ return std::vector<int>(n); }

?

这在 rust 中是不可能的:

let n = 15;
let board: [int, ..n];

注意:我看到不可能以简单的方式做到这一点,here , 但我拒绝接受这么简单的事情是不可能的:p

非常感谢!

最佳答案

没关系,我是这样找到的:

let n = 15;      // number of items
let val = 17; // value to replicate
let v = std::vec::from_elem(val, n);

关于vector - Rust - 大小在运行时定义的向量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21393508/

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