C++中的logical_or是二进制函数对象类,它在其两个参数之间返回逻辑“或”运算的结果(由运算符||返回)。
句法:
template struct logical_or : binary_function
{
T operator() (const T& a, const T& b) const {return a||b;}
};
参数: (T)参数的类型和函数调用的返回类型。该类型应支持该操作(二进制运算符||)。
会员类型:
- a:成员运算符()中第一个参数的类型
- b:成员运算符()中第二个参数的类型
- result_type:成员运算符()返回的类型
以下是使用std :: transform()来实现logical_and的程序:
#include
using namespace std;
int main()
{
// First array
int z[] = { 1, 0, 1, 0 };
// Second array
int y[] = { 1, 1, 0, 0 };
int n = 4;
// Result array
int result[n];
// transform applies logical_or
// on both the array
transform(z, z + n, y,
result, logical_or());
cout<< "Logical OR:\n";
for (int i = 0; i < n; i++)
// Printing the result array
cout << z[i] << " OR " << y[i]
<< " = " << result[i] << "\n";
return 0;
}
输出:
Logical OR:
1 OR 1 = 1
0 OR 1 = 1
1 OR 0 = 1
0 OR 0 = 0
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。