是否将指针强制转换为“void*”?调用placement new 时有什么影响吗?
我正在审查自定义容器的代码,其中的某些部分创建如下所示的元素:
::new( (void*)&buffer[index] ) CStoredType( other );
部分这样做:
::new( &buffer[index] ) CStoredType( other );
有些 指向新元素存储的指针按原样传递,而在另一个中则将其强制转换为void*
。
转换为 void*
有什么效果吗?
I'm reviewing code of a custom container and some portions of it create elements like this:
::new( (void*)&buffer[index] ) CStoredType( other );
and some do like this:
::new( &buffer[index] ) CStoredType( other );
So both use placement new to invoke a copy constructor to create an element by copying some other element, but in one case a pointer to the new element storage is passed as is and in another it is casted to void*
.
Does this cast to void*
have any effect?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,您可以为非空指针重载运算符 new 。强制转换可确保采用 void 指针重载。
例如
Yes you could overload operator new for a nonvoid pointer. The cast ensures that the void pointer overload is taken.
For example
一个可编译的例子:
A compilable example: