gpt4 book ai didi

c++ - C/C++ 中结构的 `new` 和 `new()` 有什么区别?

转载 作者:塔克拉玛干 更新时间:2023-11-03 07:36:01 26 4
gpt4 key购买 nike

<分区>

Possible Duplicate:
Do the parentheses after the type name make a difference with new?

在一些代码中,我最近看到了这样一个结构:

typedef struct MyStruct {
int numberOne;
int numberTwo;
} MYSTRUCT;

后来,我尝试使用实例化这些结构之一

MyStruct *pStruct = new MyStruct();

它在 Visual Studio 2010 上运行良好,但在不同的编译器上出现模糊的链接器错误而失败。我们花了一段时间才发现像这样省略大括号

MyStruct *pStruct = new MyStruct;

解决了这个问题。

那么,这两种调用之间到底有什么区别,哪一种是正确的使用方式?

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com