将C++中的list模版第一个数据赋值给一个指针指向的空间
如题,我用front()和begin()编译器都提示我“=”不能重载(nooperatordefinedwhichtakesaright-handoperandoftyp...
如题,我用front()和begin()编译器都提示我“=”不能重载(no operator defined which takes a right-hand operand of type)
请问这事为什么?应该怎么做?
我是这样写的:
*t = list.front();//list是个名字,无伤大雅,我保证list中的数据类型和我指针指向的数据空间是一样的类型
我的list中是struct,不知怎样重载"="?用"copy"又是怎样用的?包含了哪一个头文件? 展开
请问这事为什么?应该怎么做?
我是这样写的:
*t = list.front();//list是个名字,无伤大雅,我保证list中的数据类型和我指针指向的数据空间是一样的类型
我的list中是struct,不知怎样重载"="?用"copy"又是怎样用的?包含了哪一个头文件? 展开
4个回答
展开全部
#include <iostream>
#include <list>
using namespace std;
list<int>t;
int main()
{
t.push_back(1);
t.push_back(2);
int*a=new int;
*a=t.front();
cout <<*a<<endl;
cout <<*(t.begin())<<endl;
return 0;
}
//通过验证
t.front()返回的是第一个元素
t.begin()返回的是第一个元素的地址
#include <list>
using namespace std;
list<int>t;
int main()
{
t.push_back(1);
t.push_back(2);
int*a=new int;
*a=t.front();
cout <<*a<<endl;
cout <<*(t.begin())<<endl;
return 0;
}
//通过验证
t.front()返回的是第一个元素
t.begin()返回的是第一个元素的地址
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
list模版用指针不好!用iterator(智能指针)撒
list<struct>::iterator iter;
iter=list.begin();就行了
list<struct>::iterator iter;
iter=list.begin();就行了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你没include <list> ? 或者没 using ?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询