我想知道如何动态创建一个类数组,我试过做一个
class A{
public:
int a;
int b;
}
main(){
A *temp;
temp[somevalue] = new (temp)
}
但问题是我不想将我的数组限制为我想扩展它的某个值,我想过使用std::vector
and std::lis
t 但我陷入了实现中
我想知道如何动态创建一个类数组,我试过做一个
class A{
public:
int a;
int b;
}
main(){
A *temp;
temp[somevalue] = new (temp)
}
但问题是我不想将我的数组限制为我想扩展它的某个值,我想过使用std::vector
and std::lis
t 但我陷入了实现中