C++20新特性语言特性新增标准库函数
语言特性__has_cpp_attribute检查是否存在由属性标记命名的属性,例如deprecated等#include <iostream>#ifdef __has_cpp_attribute #if __has_cpp_attribute(deprecated) #define DEPRECATED(msg) [[deprecated(msg)]] #endif#endif#ifndef DEPRECATED #define DE