gpt4 book ai didi

c++ - 如何创建指针数组?

转载 作者:IT老高 更新时间:2023-10-28 12:31:35 25 4
gpt4 key购买 nike

我正在尝试创建一个指针数组。这些指针将指向我创建的 Student 对象。我该怎么做?我现在拥有的是:

Student * db = new Student[5];

但该数组中的每个元素都是学生对象,而不是指向学生对象的指针。谢谢。

最佳答案

Student** db = new Student*[5];
// To allocate it statically:
Student* db[5];

关于c++ - 如何创建指针数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/620843/

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