📜  Rust 中将 u64 乘以 u128 - C 编程语言代码示例

📅  最后修改于: 2022-03-11 15:04:36.545000             🧑  作者: Mango

代码示例1
//convert either u128 or u64 to the other compatible type 
//Use 'as u64' or 'as u128'

this_is_a_u128_num * (this_is_a_u64_num as u128)