訪問vector元素
1、class vector
; //返回元素
};vector v(10);
double x = v[2]; //很好
v[3] = x; //錯誤:v[3]不是乙個左值
在這段**中,v[i]被解釋為函式呼叫v.operator(i),返回v的編號為i的元素的值。
對於過於簡單的vector,v[3]是乙個浮點型別的數值,而不是乙個浮點型別的變數。
2、我們進一步嘗試令operator返回指向對應元素的指標:
class vector
; //返回指標
};vetor v(10);
for (int i=0; i3、
class vector
; //返回引用
};v[i]在這裡被解釋為函式呼叫v.operator(i),返回v的編號為i的元素的引用。
字典訪問的三種方法
定義字典 dic 方法一 for key in dic print key,dic key print key str dic key 結果 a hello ahello c you cyou b how bhow 細節 print key,dic key 後面有個逗號,自動生成乙個空格 print...
python 字典訪問的三種方法
定義字典 dic for key in dic print key,dic key print key str dic key 結果 a hello ahello c you cyou b how bhow 細節 print key,dic key 後面有個逗號,自動生成乙個空格 print key...
python 字典訪問的三種方法
定義字典 dic 方法一 for key in dic print key,dic key print key str dic key 結果 a hello ahello c you cyou b how bhow 細節 print key,dic key 後面有個逗號,自動生成乙個空格 print...