讀書心得 - C++ Primer (5th Edition) - Chapter 2 (4) - 常用詞彙 常用詞彙 bind Associating a name with a given entity so that uses of the name are uses of the underlying entity. For example, a reference is a name that is bound to an object. ... Read More
Programmer Interview - stack v.s. heap stack v.s. heap 與 threads 的互動 在一個 multi-threaded 的程式中,每個 thread 都各自擁有一個 stack,但共享一個 heap。 object 可以儲存在 heap,而非 stack 在 c++ 可以使用 new,來將 object 實體儲存在 heap。 void foo () { ... Read More