error C2440: 'initializing' : cannot convert from 'class c *' to 'class c' 求指导

#include<iostream>usingnamespacestd;classc{};voidmain(){ca=newc();cout>>&a>>endl;cb=a... #include <iostream>
using namespace std;
class c
{
};
void main()
{
c a=new c();
cout>>&a>>endl;
c b=a;
cout>>&b;
}

-Configuration: 1211 - Win32 Debug--------------------
Compiling...
1211.cpp
C:\Program Files\Microsoft Visual Studio\MyProjects\1211\1211.cpp(8) : error C2440: 'initializing' : cannot convert from 'class c *' to 'class c'
No constructor could take the source type, or constructor overload resolution was ambiguous
C:\Program Files\Microsoft Visual Studio\MyProjects\1211\1211.cpp(9) : error C2676: binary '>>' : 'class std::basic_ostream<char,struct std::char_traits<char> >' does not define this operator or a conversion to a type acceptable to the predefined op
erator
C:\Program Files\Microsoft Visual Studio\MyProjects\1211\1211.cpp(11) : error C2676: binary '>>' : 'class std::basic_ostream<char,struct std::char_traits<char> >' does not define this operator or a conversion to a type acceptable to the predefined o
perator
Error executing cl.exe.
1211.obj - 3 error(s), 0 warning(s)
展开
 我来答
lgao622
推荐于2016-01-16 · 知道合伙人软件行家
lgao622
知道合伙人软件行家
采纳数:1137 获赞数:6549
毕业于武汉工程大学邮电与信息工程学院通信专业,软件行业,4年工作经验。

向TA提问 私信TA
展开全部
#include <iostream>
using namespace std;
class c
{
};
void main()
{
c *a=new c();
cout<< &a <<endl;
c *b=a;
cout<< &b;
}
更多追问追答
追问
为什么要改为指针呢?
追答
new  返回的就是 指针
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式