C++11

悟已往之不谏,知来者之可追。实迷途其未远,觉今是而昨非。

// 字符串原始字面量 std::string path = R"xxx(c:\1.txt)xxx"; 保留字符串原始语义而不进行转义,其中的xxx为注释性语句,可以不写,但要保持()前后一致

发布 0 条评论

NULL的定义 #ifndef NULL #ifdef __cplusplus #define NULL 0 #else #define NULL ((void *)0) #endif #endif nullptr可以自动转换为相应的类型 // 使用nullptr代替NULL int* p1 = nullptr...

发布 0 条评论

// 常量表达式 constexpr int c_a = 10; // 常量表达式函数声明 constexpr int myconst(); // 常量表达式函数 constexpr int myconst() { constexpr int a = 100; // static_assert,typedef,using return a; } // 常...

发布 0 条评论