C++ placement new keep giving compiling error

前端 未结 2 1072
伪装坚强ぢ
伪装坚强ぢ 2021-01-21 04:14

Try to use placement new but it kept giving me errors. I remember a while ago, it was working. g++ (ver 4.8.4) on Ubuntu 14.04.

#include 
typed         


        
2条回答
  •  暗喜
    暗喜 (楼主)
    2021-01-21 04:33

    To make your original code work, you need to add

    void* operator new( size_t, strSession * p ) { return p; }
    

    In the old days, before C++ left Bell Labs, C++ had a feature where a constructor could assign to 'this'. The operator new placement syntax was considered an improvement.

提交回复
热议问题