C++中的logical_and是二进制函数对象类,该类返回其两个参数之间的逻辑“和”运算的结果(由运算符&&返回)。
句法:
template struct logical_and : 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()
{
bool z[] = { true, false, true, false, true };
bool y[] = { true, true, false, false, true };
int n = 5;
bool result[n];
// using transform to
// perform logical_AND on two array
transform(z, z + n, y, result,
logical_and());
cout << "Logical AND:\n";
for (int i = 0; i < n; i++)
cout << z[i] << " AND " << y[i]
<< " = " << result[i] << "\n";
return 0;
}
输出:
Logical AND:
1 AND 1 = 1
0 AND 1 = 0
1 AND 0 = 0
0 AND 0 = 0
1 AND 1 = 1
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。