我正在尝试使用BigInt
。我的代码是这样的:
extern crate num;
use num::bigint::BigInt;
...
println!("{}", from_str::<BigInt>("1")); //this is line 91 in the code
在我的Cargo.toml文件中,我有以下内容:
[dependencies]
num = "0.1.30"
我所做的似乎与this document,also this document和an answer here on Stack Overflow中的内容相符。
但是我收到以下错误:
Compiling example v0.1.0 (file:///C:/src/rust/example)
src\main.rs:91:20: 91:38 error: unresolved name `from_str` [E0425]
src\main.rs:91 println!("{}", from_str::<BigInt>("1"));
答案 0 :(得分:5)
想通了,好像当前的语法是:
"8705702225074732811211966512111".parse::<BigInt>().unwrap();
更好的是,请执行以下操作:
match "8705702225074732811211966512111".parse::<BigInt>() {
Ok(big) => {
...