gpt4 book ai didi

c++ - 创建类 objs 的数组

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

考虑下课

class test
{
public:
test(int x){ cout<< "test \n"; }

};

现在我想创建 50 个类 test 对象的数组。我不能更改类测试。

对象可以在堆或栈上创建。

在这种情况下不可能在堆栈上创建对象,因为我们在类中没有默认构造函数

test objs(1)[50]; /// Error...

现在我们可能会想到像这样在堆上创建objs..

test ** objs = NULL;
objs = (test **) malloc( 50 * sizeof (test *));
for (int i =0; i<50 ; ++ i)
{
objs[i] = new test(1);
}

我不想用malloc,还有别的办法吗??

如果你们能想到更多的解决方案,请发布...

最佳答案

您不能在没有默认构造函数的情况下创建对象数组,如 Foo foo [N]。它是语言规范的一部分。

或者做:

test * objs [50];
for() objs[i] = new test(1).

你不需要 malloc()。您可以只声明一个指针数组。

c++decl> explain int * objs [50]
declare objs as array 50 of pointer to int

但您可能应该附加某种自动 RAII 类型的销毁。


子类公开测试:

class TempTest : public test
{
public:
TempTest() : test(1) {}
TempTest(int x) : test(x) {}
TempTest(const test & theTest ) : test(theTest) {}
TempTest(const TempTest & theTest ) : test(theTest) {}
test & operator=( const test & theTest ) { return test::operator=(theTest); }
test & operator=( const TempTest & theTest ) { return test::operator=(theTest); }
virtual ~TempTest() {}
};

然后:

TempTest  array[50];

您可以将每个 TempTest 对象视为一个测试 对象。

注意:operator=() 和复制构造函数不被继承,因此需要时重新指定。

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

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