2021年2月19日 星期五

2021年2月18日 星期四

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 () { ...

Popular Posts