gpt4 book ai didi

c++ - 使用 new 分配静态数组

转载 作者:行者123 更新时间:2023-11-30 02:16:30 24 4
gpt4 key购买 nike

无论我尝试什么语法,这段代码总是编译错误:

int (*foo)[3] = new ???;

我试过了

int (*foo)[3] = new (int[3]);
int (*foo)[3] = new (int(*)[3]);
int bar[3];
int (*foo)[3] = new decltype(bar);

最佳答案

好吧,这很容易。

int (*foo)[3] = new int[1][3];

关于c++ - 使用 new 分配静态数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54795862/

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