标签:style int name har 应用 使用 amp os test ios c++
------------------<c++基础知识拾遗之&>---------------------------------===================<c++基础知识拾遗之&>===================================
----------------------------------<||运算符从左向右,截断判断>----------------------------------------------------
// coutTEst.cpp : 定义控制台应用程序的入口点。
//
#include "stdafx.h"
#include "iostream"
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
int a = 0;
int b= 0;
if(((a =3) || (b=3)))
{
a++;
b++;
}
cout<<a<<endl;
cout<<b<<endl;
return 0;
}
//输出结果为4、1
========================<||运算符从左向右,截断判断>=============================
------------------------------------------<&&运算符从左向右,全部判断>------------------------------------------------
// coutTEst.cpp : 定义控制台应用程序的入口点。
//
#include "stdafx.h"
#include "iostream"
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
int a = 0;
int b= 0;
if(((a =3) && (b=3)))
{
a++;
b++;
}
cout<<a<<endl;
cout<<b<<endl;
return 0;
}
============================<&&运算符从左向右,全部判断>====================================
标签:style int name har 应用 使用 amp os test ios c++
原文地址:http://blog.csdn.net/ghevinn/article/details/24792445