了解Vector 的Push_back 複製行為
在使用向量時,開發人員經常會遇到有關Push_back 操作期間複製構造函數頻率的查詢。讓我們透過一個範例深入研究此行為:
考慮以下 C 程式碼:
<code class="cpp">class Myint { int my_int; public: Myint() : my_int(0) { cout << "Inside default" << endl; } Myint(const Myint& x) : my_int(x.my_int) { cout << "Inside copy with my_int = " << x.my_int << endl; } }; int main() { vector<Myint> myints; Myint x; myints.push_back(x); x.set(1); myints.push_back(x); }</code>
此程式碼段預計會在 Push_back 操作期間觸發複製構造函數兩次。但是,執行後,我們觀察到以下輸出:
Inside default Inside copy with my_int = 0 Inside copy with my_int = 0 Inside copy with my_int = 1
為什麼複製建構子似乎被呼叫了三次?
因此,複製建構子總共被呼叫了 3 次。要最佳化此行為:
以上是在 C 向量中的「push_back」操作期間,複製建構函式被呼叫多少次?的詳細內容。更多資訊請關注PHP中文網其他相關文章!