gpt4 book ai didi

c++ - 类指针的动态数组

转载 作者:行者123 更新时间:2023-11-30 03:42:44 27 4
gpt4 key购买 nike

我正在尝试创建一个动态指针数组,指向一个类的多个实例,ElectricityBill .

我目前的方法是创建一个 ElectricityBills 的动态数组(目前什么都没有),然后创建一个 ElectricityBill 的单个实例,创建另一组 ElectricityBills,这次大小更大,复制旧动态数组的所有实例, 在末尾添加新的。

我试过的代码如下

// Define the dyn array
int EBcount = 0;
ElectricityBill **EB = new ElectricityBill*[EBcount];

// Create a temp instance and input the data
ElectricityBill *tempEB = new ElectricityBill;
std::cin >> *tempEB;

std::cout << *tempEB << std::endl;

// Create a new dyn array and copy the instances accross
EBcount++;
ElectricityBill **temp = new ElectricityBill*[EBcount];
for (int i = 0; i < EBcount-1; i++) {
temp[i] = EB[i];
}

// Append the new instance at the end and delete the old array
temp[EBcount-1] = tempEB;
delete [] EB;
EB = temp;

std::cout << temp[0] << std::endl;
std::cout << EB[0] << std::endl;

输出是

E;name;1;2;3;acc;add;1/1/2000;1/2/2000;22.721;2.2721
0x100500000
0x100500000

值得注意的是,我已经重载了运算符 <<>>在类定义中。 >>运算符提示用户输入数据并将输入数据存储在类的私有(private)变量部分,<<运算符是这样构建的:

std::ostream& operator<<(std::ostream &stream, ElectricityBill &printStream) {

stream << "E;"
<< printStream.billerName << ";"
<< printStream.billerCode << ";"
<< printStream.referenceNumber << ";"
<< printStream.accountNumber << ";"
<< printStream.accountName << ";"
<< printStream.address << ";"
<< printStream.periodStartDate.day << "/" << printStream.periodStartDate.month << "/" << printStream.periodStartDate.year << ";"
<< printStream.periodDueDate.day << "/" << printStream.periodDueDate.month << "/" << printStream.periodDueDate.year << ";"
<< printStream.amountDue << ";"
<< printStream.totalGST;

return stream;
}

由于某种原因,输出输出的是内存地址而不是预期的数据。为什么会发生这种情况,我该如何解决?

最佳答案

您的重载运算符接受对 ElectricityBill 的引用,但您似乎提供了一个指针。因此,<< 的默认实现正在使用,打印内存位置。尝试:

std::cout << *temp[0] << std::endl;
std::cout << *EB[0] << std::endl;

关于c++ - 类指针的动态数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36673278/

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