MFC中建两个编辑框都是CString m_a m_b,实现把第一个编辑框的字符反转在编辑2框中显示
voidCZyyDlg::OnChange(){//TODO:AddyourcontrolnotificationhandlercodehereUpdateData(tr...
void CZyyDlg::OnChange()
{
// TODO: Add your control notification handler code here
UpdateData(true);
m_b=m_a.MakeReverse();
UpdateData(false);
}
为什么编译出错??error C2679: binary '=' : no operator defined which takes a right-hand operand of type 'void' (or there is no acceptable conversion)
请求高手解答。。。。 展开
{
// TODO: Add your control notification handler code here
UpdateData(true);
m_b=m_a.MakeReverse();
UpdateData(false);
}
为什么编译出错??error C2679: binary '=' : no operator defined which takes a right-hand operand of type 'void' (or there is no acceptable conversion)
请求高手解答。。。。 展开
2个回答
展开全部
你的MakeReverse()是不是定义成了void MakeReverse(),这样能有返回值吗?将void改成CString或者string,同时在函数最后面返回m_a,即return m_a;
追问
是void ,但是我记得老师讲的时候好像就三句搞定了,也没出现void问题,但是我的笔记丢了;
void MakeReverse();是系统自己定义的。。。请您帮帮忙。。。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询