gpt4 book ai didi

rust - 尝试进行位移时崩溃

转载 作者:行者123 更新时间:2023-11-29 08:10:41 27 4
gpt4 key购买 nike

我正在尝试运行这个 rust 代码

use std::net::Ipv4Addr;

fn ip_to_int(addr: Ipv4Addr) -> u32 {
let ip = addr.octets();
(ip[0] as u32) << 24 + (ip[1] as u32) << 16 + (ip[2] as u32) << 8 + (ip[3] as u32)
}

fn main() {
let ip = Ipv4Addr::new(74, 125, 227, 0);
println!("{}", ip_to_int(ip));
}

这崩溃了

thread '<main>' panicked at 'shift operation overflowed', test.rs:5

我确实将所有内容都转换为 32 位整数,并且没有任何移位大于 32 位。为什么会崩溃?另外,编译器难道不应该捕捉到这一点并阻止编译吗?

Abhishek@Abhisheks-MacBook-Pro-2:~$ rustc --version
rustc 1.1.0-nightly (21f278a68 2015-04-23) (built 2015-04-24)

最佳答案

根据the Rust reference , 运营商 +作为比运算符 << 更强的优先级,这意味着您的表达式实际上是这样解析的:

(ip[0] as u32) << (24 + (ip[1] as u32)) << (16 + (ip[2] as u32)) << (8 + (ip[3] as u32))

这很容易溢出。

您需要添加适当的括号:

((ip[0] as u32) << 24) + ((ip[1] as u32) << 16) + ((ip[2] as u32) << 8) + (ip[3] as u32)

关于rust - 尝试进行位移时崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29862630/

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