标签: c++ new-operator
我知道这可能不是一个非常具体的问题标题,但我不知道如何在我的情况下提出问题,对不起。
以下是我在MSDN博客The Mallocator中找到的代码:
void construct(T* const p, const T& t) const { void * const pv = static_cast<void *>(p); new (pv) T(t); }
&#34; new&#34;这对我来说很奇怪,请帮我理解。