C++ 函数库 - logical_not



描述

这是一个逻辑非函数对象类和一元函数对象类,其调用返回对其参数进行逻辑“非”运算的结果(如运算符!返回的结果)。

声明

以下是 std::logical_not 的声明。

template <class T> struct logical_not;

C++11

template <class T> struct logical_not;

参数

T − 它是函数调用参数和返回值的类型。

返回值

异常

noexcep − 它不抛出任何异常。

示例

下面的示例解释了 std::logical_not。

#include <iostream>
#include <functional>
#include <algorithm>

int main () {
   bool values[] = {true,false};
   bool result[2];
   std::transform (values, values+2, result, std::logical_not<bool>());
   std::cout << std::boolalpha << "Logical NOT Example as shown below:\n";
   for (int i=0; i<2; i++)
      std::cout << "NOT " << values[i] << " = " << result[i] << "\n";
   return 0;
}

让我们编译并运行上述程序,这将产生以下结果:

Logical NOT Example as shown below:
NOT true = false
NOT false = true
functional.htm
广告