and_eq
Eine Alternative zum &= Operator.
#define and_eq &=
Hinweise
Das Makro führt das Operator &=.
Beispiel
// iso646_and_eq.cpp
// compile with: /EHsc
#include <iostream>
#include <iso646.h>
int main( )
{
using namespace std;
int a = 3, b = 2, result;
result= a &= b;
cout << result << endl;
result= a and_eq b;
cout << result << endl;
}
Anforderungen
Header: <iso646.h>
Namespace: std