c++链表问题,CtypedPtrList的使用

发布于 2021-11-19 13:17:02 字数 1176 浏览 399 评论 1

用vc6.0编译不过去,不知道哪里错了,求解答,谢谢。

#include <afx.h>

#include <afxtempl.h>
#include<cstring>
typedef struct jiegouti
{
   CString Name;
   int  Age;
}Student,*lpstudent;
typedef CtypedPtrList<CPtrList,lpstudent> CStudent;
void main()
{
CStudent m_student;//定义这个模板的变量
//下面是往这个列表中模板中添加对象,
lpstudent MyStudent;//定义一个结构体指针变量;
MyStudent =New Student;//在堆中创建一个学生
//为这个学生添加信息
MyStudent->Name="zl";
MyStudent->Age=12;
m_student.AddTail(MyStudent);//把这个学生添加模板这个容器中


Lpstudent lpstudent;
CString TempName;
int TempAge;
POSITION pos=m_student. GetHeadPosition();
//循环遍历找出容器中的所有学生的信息
while (pos!=NULL)
{
 lpstudent=m_student.GetNext(pos);
 TempName=lpstudent->Name;//得到学生的名字
 TempAge=lpstudent->Age;//得到学生的年龄
}
POSITION pos= m_student.GetHeadPosition();
while(pos!=NULL)
{
 Lpstudent lpstudent;
 lpstudent=m_HotInfo.GetNext(pos);
 delete[]lpstudent;
}
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

绝影如岚 2021-11-20 12:31:34

编译出错的提示是啥呀?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文