開發平台(Platform): (Ex: VC++, GCC, Linux, ...)
Apple LLVM version 7.0.2 (clang-700.1.81)
Target: x86_64-apple-darwin14.5.0
Thread model: posix
額外使用到的函數庫(Library Used): (Ex: OpenGL, ...)
問題(Question):
我用 g++ -O0 main.cc 編譯後執行
為什麼 main function 在執行 Foo foo1 = Func(); 時
完全沒有 copy constructor 被呼叫
餵入的資料(Input):
預期的正確結果(Expected Output):
一次 copy constructor 被執行
###
### codepad 上執行的結果是兩次 copy constructor 被執行!
### 這是因為 Func 的回傳值先被複製到一個暫時的變數後
### 暫時的變數再被複製到 foo1 嗎???
### 所以總共兩次 copy constructor 被執行
###
錯誤結果(Wrong Output):
in constructor
0x7fff53564b28
=======
0x7fff53564b28
沒有 copy constructor 被執行
而且 Func 內 local foo 位址與 main 內 foo1 位址相同
程式碼(Code):(請善用置底文網頁, 記得排版)
http://codepad.org/81B5HPLf
補充說明(Supplement):