gpt4 book ai didi

c++ - 请帮我解决这个意外的输出

转载 作者:太空宇宙 更新时间:2023-11-04 14:53:52 25 4
gpt4 key购买 nike

这是我的链表示例 C++ 代码。这实际上不是链表,而只是一个虚拟程序。我得到了这个程序的意外输出。

#include<iostream>
using namespace std;

struct list{
int data;
list *next;
};

void setData(list ob){
int d;
cout<<"enter data"<<endl;
cin>>d;
ob.data=d;
}

void getData(list ob){
cout<<"Data is :"<<ob.data<<endl;
}


int main(){
list node1,node2,node3;
setData(node1);
setData(node2);
setData(node2);
getData(node1);
getData(node2);
getData(node3);

return 0;

}

我的代码输入是 2,3 和 4。我得到的意外输出是 -

enter data
2
enter data
3
enter data
4
Data is :2293540
Data is :4201920
Data is :2293608

编辑

struct list{
char data; list next;
}
void main(){
list *start,node1,node2;
//I got stuck on the below two lines
start=(struct list)malloc(sizeof(list)); //Dynamic allocation of memory of size list whose address is stored in start
start=&node1; // start holds the address of node1 which is not dynamically allocated .

我不明白为什么如果第二个语句通过给它提供堆栈中 node1 的内存地址来覆盖它,为什么 *start 被赋予一个动态地址(至少我理解的是)。

最佳答案

因为您正在按值传递链表。要更改此设置,请通过引用传递。

void setData(list& ob){
int d;
cout<<"enter data"<<endl;
cin>>d;
ob.data=d;

当您按值传递时,C++ 会为您传入的任何内容制作一个拷贝。因此,当您调用 getData 时,您传入的是一个列表的拷贝,该列表具有里面没有数据,所以打印的是垃圾。

关于c++ - 请帮我解决这个意外的输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31413437/

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