gpt4 book ai didi

c++ - 为什么我不能打印 "first"?

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

我使用链表来存储我的数据。构造函数和打印函数好像没问题,就是不知道是不是我的指针出错了。

这是我的代码:

#include <iostream>   
using namespace std;

///constructor
String::String( const char * s): head(NULL)
{
ListNode * h = head;
h = new ListNode(s[0], NULL);
ListNode * c = h;
for(int i = 1; s[i] != '\0'; ++i)
{
c->next = new ListNode(s[i], NULL);
c = c->next;
}
}
// redefine the << operator
ostream & operator << ( ostream & out, String str )
{
str.print(out);
return out;
}
istream & operator >> ( istream & in, String & str )
{
str.read(in);
return in;
}
void String::print( ostream & out )
{
ListNode * c = head;
for(; c != '\0'; c = c->next)
{out << c->info;}
}
void String::read( istream & in )
{
ListNode * c = head;
for(; c != '\0'; c = c->next)
in >> c->info;
}
int main()
{
cout << "123" << endl;
String firstString("First");
cout << firstString << endl;
cout << "1234" << endl;
cout << "12345" << endl;
return 0;
}

我的结果是

123

1234
12345

有线的说我的123和1234 12345可以打印出来,但是我的“第一”不见了。

最佳答案

问题出在你的构造函数上。你初始化 head为空,复制 head 的值至 h (在这种情况下为 NULL),分配 h指向新的 ListNode但永远不要重新分配 head指向 ListNode 的指针h指向.

String::String( const char * s): head(NULL)
{
head = new ListNode(s[0], NULL);
ListNode * c = head;
for(int i = 1; s[i] != '\0'; ++i)
{
c->next = new ListNode(s[i], NULL);
c = c->next;
}
}

关于c++ - 为什么我不能打印 "first"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33471097/

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