c++链表问题,CtypedPtrList的使用
用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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
编译出错的提示是啥呀?