这个工程的main函数提示getArea第一次使用,但是我明明已经声明并定义过了

#include<cstdlib>#include<iostream>#include"Rectangle.h"usingnamespacestd;intmain(int... #include <cstdlib>
#include <iostream>
#include"Rectangle.h"
using namespace std;
int main(int argc, char *argv[])
{
Rectangle a;
Rectangle b(2,3);
cout<<getArea(2,3)<<endl;
system("PAUSE");
return EXIT_SUCCESS;
}

#include<iostream>
#include"Rectangle.h"
using namespace std;
int Rectangle:: getArea(int w,int h){
return w*h;
}
Rectangle::Rectangle(){
cout<<"finish"<<endl;
}
Rectangle::Rectangle(int w,int h){
h=h;
w=w;
cout<<"done"<<endl;
}

class Rectangle{
int w,h;
public:
int getArea(int w,int h);
Rectangle();
Rectangle(int w,int h);
};
展开
 我来答
百度网友1fc36d4
2012-11-12 · TA获得超过3128个赞
知道大有可为答主
回答量:1497
采纳率:100%
帮助的人:1820万
展开全部
a.getArea(2,3)
或是b.getArea(2,3)吧?

getArea是类成员函数,而且不是静态成员函数,得有类实例
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式