ZhangHanDong / tao-of-rust-codes

《Rust编程之道》随书源码
https://ruststudy.github.io/tao_of_rust_docs/tao_of_rust/
MIT License
1.19k stars 172 forks source link

[第五章]5.4 代码[5-26] 建议 #219

Closed ZoomQuiet closed 5 years ago

ZoomQuiet commented 5 years ago

页码与行数


文本或排版错误

暂无


代码错误


...
} else if cached_input > 5 {
    *output *= 2;   // 此处应和上页对比的错误代码一致 
    // -> *output *= 1;
    // 否则, 两种条件, 输出的都是 2, 在程序行为上无意义
}

Rust版本

$ rustc -V
rustc 1.35.0 (3c235d560 2019-05-20)

错误信息

NIL

ZhangHanDong commented 5 years ago

@ZoomQuiet 感谢反馈