国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發設計 > 正文

第三十八課:邏輯操作符的陷阱----------狄泰軟件學院

2019-11-14 12:24:24
字體:
來源:轉載
供稿:網友

一、邏輯運算符的原生語義

1.操作符只有兩種值(true和false) 2.邏輯表達式不用完全計算就能確定最終值 3.最終結果只能是true或者false

#include<iostream>using namespace std;int fun(int i){ cout<<"int fun(int i): i="<<i<<endl; return i;}int main(){ if(fun(0) && fun(1)) { cout<<"the result is true"<<endl; } else { cout<<"the result is false"<<endl; } cout<<endl; if(fun(0) || fun(1)) { cout<<"the result is true"<<endl; } else { cout<<"the result is false"<<endl; } return 0;}打印結果:int fun(int i): i=0the result is falseint fun(int i): i=0int fun(int i): i=1the result is true

二、重載邏輯操作符

#include<iostream>using namespace std;class Test{PRivate: int i;public: Test(int i) { this->i = i; } int getI() const { return i; }};bool Operator && (const Test& l, const Test& r){ return (l.getI() && r.getI());}bool operator || (const Test& l, const Test& r){ return (l.getI() || r.getI()); }Test fun(Test i){ cout<<"Test fun(Test i): i="<<i.getI()<<endl; return i;}int main(){ Test t0(0); Test t1(1); if(fun(t0) && fun(t1))//operator && (fun(t0), fun(t1)) 則先要算出參數fun(t0)和fun(t1)的值,且這兩個的計算順序不確定 { cout<<"the result is true"<<endl; } else { cout<<"the result is false"<<endl; } if(fun(t0) || fun(t1)) { cout<<"the result is true"<<endl; } else { cout<<"the result is false"<<endl; } return 0;}打印結果:Test fun(Test i): i=1Test fun(Test i): i=0the result is falseTest fun(Test i): i=1Test fun(Test i): i=0the result is true

問題本質分析:

1.c++通過函數調用擴展操作符的功能 2.進入函數體前必須完成所有參數的計算 3.函數參數的計算次序是不確定的 4.短路法則完全失效 所以說邏輯操作符重載后無法完全實現原生語義

建議:

1.實際工程開發中避免重載邏輯操作符 2.通過重載比較操作符代替邏輯操作符重載 3.直接使用成員函數代替邏輯操作符重載 4.直接使用全局函數對操作符進行重載

小結:

1.c++在語法上支持邏輯操作符的重載 2.重載邏輯操作符后不滿足短路法則 3.通過重載比較操作符代替邏輯操作符重載 4.通過專用成員函數代替邏輯操作符


發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 丰原市| 三河市| 洛宁县| 东台市| 奉化市| 油尖旺区| 乌鲁木齐县| 涡阳县| 凤台县| 凭祥市| 清苑县| 阳谷县| 巫山县| 平度市| 海丰县| 逊克县| 雅安市| 高雄县| 新建县| 措美县| 苏尼特右旗| 利辛县| 邵阳县| 华池县| 阿拉善盟| 安西县| 卢龙县| 佛教| 克拉玛依市| 怀安县| 吉木萨尔县| 广昌县| 成安县| 双流县| 定兴县| 富阳市| 微山县| 平舆县| 汕头市| 三亚市| 神农架林区|