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

发布于 2024-10-06 03:57:24 字数 628 浏览 6 评论 0原文

可能的重复:
在类型名称后面添加括号与 new 有区别吗?

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

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

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

MyStruct *pStruct = new MyStruct();

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

MyStruct *pStruct = new MyStruct;

就可以解决问题。

那么,这两种调用到底有什么区别,哪一种更适合使用呢?

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

In some code, I recently saw a struct like this:

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

Later, I tried instantiating one of these structs using

MyStruct *pStruct = new MyStruct();

which worked fine with Visual Studio 2010, but failed with an obscure linker error on a different compiler. It took a while until we found out that omitting the braces like this

MyStruct *pStruct = new MyStruct;

solved the issue.

So, what exactly is the difference between these two invocations and which one is the right one to use?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

但可醉心 2024-10-13 03:57:24

new MyStruct 执行默认初始化,在您的情况下,它什么也不做。

new MyStruct() 执行值初始化,在您的情况下,这会将两个 int 变量设置为零。

new MyStruct performs default initialization, which in your case does nothing.

new MyStruct() performs value initialization, which in your case sets both int variables to zero.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文