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

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

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

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

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

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.通過專用成員函數代替邏輯操作符


上一篇:初識docker

下一篇:python實現郵件發送

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 益阳市| 金湖县| 弥勒县| 新野县| 汾西县| 思茅市| 远安县| 清水河县| 双柏县| 承德市| 清新县| 吴桥县| 雷波县| 岳普湖县| 晋城| 甘南县| 兴和县| 微博| 江口县| 弋阳县| 和林格尔县| 灌阳县| 布尔津县| 长子县| 洛隆县| 泗阳县| 虎林市| 长治市| 泊头市| 正蓝旗| 无极县| 呼玛县| 潜山县| 湖口县| 芦溪县| 达州市| 慈溪市| 阿鲁科尔沁旗| 区。| 贵德县| 藁城市|