作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 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"));
最佳答案
想通了,看起来像当前的语法是:
"8705702225074732811211966512111".parse::<BigInt>().unwrap();
更好的是,执行以下操作:
match "8705702225074732811211966512111".parse::<BigInt>() {
Ok(big) => {
...
关于rust - 如何从 num crate 解析 BigInt?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34755100/
我是一名优秀的程序员,十分优秀!