在C 中使用向量和多態性時,可能會遇到儲存物件的類型至關重要的情況。考慮以下範例:
<code class="cpp">struct Instruction { virtual void execute() { } }; struct Add : public Instruction { int a, b, c; Add(int x, int y, int z) { a = x; b = y; c = z; } void execute() { a = b + c; } }; vector<Instruction> v; Instruction* i = new Add(1, 2, 3); v.push_back(*i);</code>
在此程式碼中,建立了基底類別物件的向量,並將衍生類別 (Add) 的物件作為參考推送到向量中。當存取此物件上的「執行」函數時,就會出現問題:
<code class="cpp">auto ins = v.back(); ins.execute(); // Will the object retain its Add type?</code>
多態性會起作用嗎?
不,不會。向量儲存值,而不是引用。因此,當Add物件被推入向量時,它會被複製,得到一個Instruction類型的對象,而不是Add。
Reference_wrapper
確保多態性保持不變,一種方法是使用std::reference_wrapper
<code class="cpp">vector<std::reference_wrapper<Instruction>> ins;</code>
防止記憶體洩漏
另外,程式碼中用new動態分配了一個Add對象,但沒有刪除它,導致記憶體洩漏。要修正這個問題,程式碼應該使用智慧指針,例如 std::unique_ptr,或在物件超出範圍之前手動刪除該物件。
以上是多態性可以與 C 中的向量引用一起使用嗎?的詳細內容。更多資訊請關注PHP中文網其他相關文章!