V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
xuanwu
V2EX  ›  Rust

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

  •  
  •   xuanwu · 3 天前 · 217 次点击

    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!("是。不是!");
        }
    }
    
    1 条回复
    xuanwu
        1
    xuanwu  
    OP
       11 小时 41 分钟前
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   2707 人在线   最高记录 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 19ms · UTC 05:13 · PVG 13:13 · LAX 21:13 · JFK 00:13
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.