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

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

  •  
  •   xuanwu · 4 天前 · 261 次点击

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