您好,登錄后才能下訂單哦!
本文章向大家介紹如何正確的使用C++ 共享數(shù)據(jù)保護(hù)機(jī)制,主要包括{**}的使用實(shí)例,應(yīng)用技巧,基本知識點(diǎn)總結(jié)和需要注意事項(xiàng),具有一定的參考價(jià)值,需要的朋友可以參考一下。
(1)常類型
?、俪ο螅罕仨氝M(jìn)行初始化,不能被更新。
const 類名 對象名
②常成員
用const進(jìn)行修飾的類成員:常數(shù)據(jù)成員和常函數(shù)成員
?、鄢R茫罕灰玫膶ο蟛荒鼙桓隆?/p>
const 類型說明符 &引用名
?、艹?shù)組:數(shù)組元素不能被更新(詳見第6章)。
類型說明符 const 數(shù)組名[大小]...
?、莩V羔槪褐赶虺A康闹羔?詳見第6章)。
用const修飾的對象
例: class A { public: A(int i,int j) {x=i; y=j;} ... private: int x,y; }; A const a(3,4); //a是常對象,不能被更新
用const修飾的對象成員
?、俪3蓡T函數(shù)
使用const關(guān)鍵字說明的函數(shù)。
常成員函數(shù)不更新對象的數(shù)據(jù)成員。
常成員函數(shù)說明格式:
類型說明符 函數(shù)名(參數(shù)表)const;
這里,const是函數(shù)類型的一個組成部分,因此在實(shí)現(xiàn)部分也要帶const關(guān)鍵字。
const關(guān)鍵字可以被用于參與對重載函數(shù)的區(qū)分
通過常對象只能調(diào)用它的常成員函數(shù)。
?、诔?shù)據(jù)成員
使用const說明的數(shù)據(jù)成員。
//常成員函數(shù)舉例 #include<iostream> using namespace std; class R { public: R(int r1, int r2) : r1(r1), r2(r2) { } void print(); void print() const; private: int r1, r2; }; void R::print() { cout << r1 << ":" << r2 << endl; } void R::print() const { cout << r1 << ";" << r2 << endl; } int main() { R a(5,4); a.print(); //調(diào)用void print() const R b(20,52); b.print(); //調(diào)用void print() const return 0; }
//常數(shù)據(jù)成員舉例 #include <iostream> using namespace std; class A { public: A(int i); void print(); private: const int a; static const int b; //靜態(tài)常數(shù)據(jù)成員 }; const int A::b=10; A::A(int i) : a(i) { } void A::print() { cout << a << ":" << b <<endl; } int main() { //建立對象a和b,并以100和0作為初值,分別調(diào)用構(gòu)造函數(shù), //通過構(gòu)造函數(shù)的初始化列表給對象的常數(shù)據(jù)成員賦初值 A a1(100), a2(0); a1.print(); a2.print(); return 0; }
如果在聲明引用時(shí)用const修飾,被聲明的引用就是常引用。
常引用所引用的對象不能被更新。
如果用常引用做形參,便不會意外地發(fā)生對實(shí)參的更改。常引用的聲明形式如下:
const 類型說明符 &引用名;
//常引用作形參 #include <iostream> #include <cmath> using namespace std; class Point { //Point類定義 public: //外部接口 Point(int x = 0, int y = 0) : x(x), y(y) { } int getX() { return x; } int getY() { return y; } friend float dist(const Point &p1,const Point &p2); private: //私有數(shù)據(jù)成員 int x, y; }; float dist(const Point &p1, const Point &p2) { double x = p1.x - p2.x; double y = p1.y - p2.y; return static_cast<float>(sqrt(x*x+y*y)); } int main() { //主函數(shù) const Point myp1(1, 1), myp2(4, 5); cout << "The distance is: "; cout << dist(myp1, myp2) << endl; return 0; }
以上就是小編為大家?guī)淼娜绾握_的使用C++ 共享數(shù)據(jù)保護(hù)機(jī)制的全部內(nèi)容了,希望大家多多支持億速云!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。