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

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

  •  
  •   xuanwu · 7 天前 · 338 次点击

    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!("是。不是!");
        }
    }
    
    5 条回复
    xuanwu
        1
    xuanwu  
    OP
       5 天前
    xuanwu
        2
    xuanwu  
    OP
       4 天前
    Rust 在线摸索(七):struct
    https://zhuanlan.zhihu.com/p/19252635602
    xuanwu
        3
    xuanwu  
    OP
       2 天前
    Rust 在线摸索(八):泛型没入门
    https://zhuanlan.zhihu.com/p/19374376642
    xuanwu
        4
    xuanwu  
    OP
       1 天前
    Rust 在线摸索(九):泛型之函数
    https://zhuanlan.zhihu.com/p/19555812533
    xuanwu
        5
    xuanwu  
    OP
       19 小时 34 分钟前
    Rust 在线摸索(十):泛型之实现
    https://zhuanlan.zhihu.com/p/19738859950
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   1031 人在线   最高记录 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 32ms · UTC 19:14 · PVG 03:14 · LAX 11:14 · JFK 14:14
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.