Static Assertion
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
执行编译时断言检查
原文:
Performs compile-time assertion checking
目录 |
[编辑] 语法
static_assert ( bool_constexpr , string )
|
(C++11 起) | ||||||||
[编辑] 解释
- bool_constexpr一个布尔常量表达式进行评估原文:bool_constexpr a boolean constant expression to be evaluated
- string字符串文字,会出现编译错误,如果bool_constexpr是假的原文:string string literal that will appear as compiler error if bool_constexpr is false
[编辑] 示例
#include <type_traits> template<class T> void swap( T& a, T& b) { static_assert(std::is_copy_constructible<T>::value, "Swap requires copying"); auto c = b; b = a; a = c; } template<class T> struct data_structure { static_assert(std::is_default_constructible<T>::value, "Data Structure requires default-constructible elements"); }; struct no_copy { no_copy ( const no_copy& ) = delete; no_copy () = default; }; struct no_default { no_default ( ) = delete; }; int main() { int a, b; swap(a,b); no_copy nc_a, nc_b; swap(nc_a,nc_b); // 1 data_structure<int> ds_ok; data_structure<no_default> ds_error; // 2 }
Possible output:
1: error: static assertion failed: Swap requires copying 2: error: static assertion failed: Data Structure requires default-constructible elements