命名空间
变体
操作

C++ 关键字: and

来自 cppreference.com
< cpp‎ | 关键字
 
 
C++ 语言
 
 

[编辑] 用法

[编辑] 示例

int main()
{
    static_assert((false and false) == false);
    static_assert((false and true)  == false);
    static_assert((true  and false) == false);
    static_assert((true  and true)  == true);
}

[编辑] 另请参阅