gpt4 book ai didi

c++ - 如何从类中返回自定义数组项并操作其属性? C++

转载 作者:太空狗 更新时间:2023-10-29 21:10:02 27 4
gpt4 key购买 nike

我正在尝试使用 get 函数从 Table 类返回一个 Cell 数组项。 Cell 类有自己的 set 函数。

我只是尝试制作一个 Cell 数组并获取和设置属性。它起作用了,但出于某种原因它在这里不起作用。

class Cell {
int content;
...
public:
Cell() {
content = 0;
...
}
int getContent() {
return content;
}
void setContent(int x){
content = x;
}
};

class Table {
Cell cells[10];
public:
Table() {}

Cell getCell(int i) {
return cells[i];
}
};

int main () {
Table t;
t.getCell(0).setContent(22);
std::cout<<t.getCell(0).getContent();
}

我原本希望得到 22,但程序什么也没输出。

最佳答案

这是因为这里

Cell getCell(int i) {
return cells[i];
}

您正在返回 Cell 的拷贝。然后您更改其内容,但当拷贝超出范围时,这些内容将丢失。 getCell(0) 生成一个拷贝,并在该行末尾丢弃。相反,您想返回对单元格的引用:

Cell& getCell(int i) {

现在它正在更改 cells[10] 中的 Cell 的内容,而不是其拷贝。

关于c++ - 如何从类中返回自定义数组项并操作其属性? C++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56075421/

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