找回密码
 注册
搜索
热搜: 回贴
  • 前程无忧官网首页 有什么好的平台可以
  • 最新的销售平台 互联网营销的平台有哪
  • 制作网页的基本流程 网页制作和网页设
  • 【帝国CMS】输出带序号的列表(数字排
  • 网站建设公司 三一,中联,极东泵车的
  • 织梦 建站 织梦网站模版后台怎么更改
  • 云服务官网 哪些网站有免费的简历模板
  • 如何建网站要什么条件 建网站要用什么
  • 吉林市移动公司电话 吉林省退休人员网
  • 设计类毕业论文 网站设计与实现毕业论
查看: 920|回复: 1

我的程序为什么会出现function does not take 1 parameters这样的错误

[复制链接]
发表于 2009-11-5 01:13:01 | 显示全部楼层 |阅读模式 IP:江苏扬州
#include<iostream.h>
class cfx
{
private:
float length;
float width;
public:
cfx(float l=1,float w=1):
length(l),width(w)
{}
~cfx()
{}
cfx zc(const cfx l)const;
cfx area(const cfx l)const;
void show(void)const;
float getLength(void)const;
float getWidth(void)const;
float setLength(void)const;
float setWidth(void)const;
};
float cfx::getLength(void)const
{ return length;
}
float cfx::getWidth(void)const
{ return width;
}
cfx cfx::zc(const cfx l)const
{ cfx c;
c=2*length+2*l.width;
return c;
}
cfx cfx::area(const cfx l)const
{ cfx c;
c=length*l.width;
return c;
}
void main(void)
{ cfx length(12),width(5),z1,z2;
length.setLength(11);
width.setWidth(6);
z1=length.zc(width);
z2=length.area(width);
cout<<"z1 is"<<z1.getLength()<<endl;
cout<<"z2 is"<<z2.getWidth()<<endl;
}

错误显示:D:\Program Files\Microsoft Visual Studio\MyProjects\Exam3_32\Exam3_32.cpp(78) : error C2660: 'setLength' : function does not take 1 parameters
D:\Program Files\Microsoft Visual Studio\MyProjects\Exam3_32\Exam3_32.cpp(80) : error C2660: 'setWidth' : function does not take 1 parameters
发表于 2009-11-5 01:13:02 | 显示全部楼层 IP:江苏扬州
float setLength(void)const;
float setWidth(void)const;



你自己声明的函数参数表是空的,用的时候你又用上了参数,当然会错!
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

QQ|小黑屋|最新主题|手机版|微赢网络技术论坛 ( 苏ICP备08020429号 )

GMT+8, 2024-10-1 09:42 , Processed in 0.216573 second(s), 12 queries , Gzip On, MemCache On.

Powered by Discuz! X3.5

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表