Rust 在线环境摸索(四): cfg、not

xuanwu · 2025-1-15 10:06:14 · 113 次点击

https://zhuanlan.zhihu.com/p/18341231954

// This function only gets compiled if the target OS is linux
#[cfg(target_os = "linux")]
fn 在跑 linux() {
    println!("你在跑 linux!");
}

// And this function only gets compiled if the target OS is *not* linux
#[cfg(not(target_os = "linux"))]
fn 在跑 linux() {
    println!("你昧在跑 linux!");
}

fn main() {
    在跑 linux();

    println!("确定?");
    if cfg!(target_os = "linux") {
        println!("是。的确!");
    } else {
        println!("是。不是!");
    }
}
举报· 113 次点击
登录 注册 站外分享
快来抢沙发
0 条回复  
返回顶部