我刚刚开始我的高级数据结构类,在处理类基础知识时,我们的问题之一是“将成员函数 max() 实现为外部函数”。
我已经浏览了 C++ 入门、C 编程语言和我们的文本,但都只提到了外部变量声明,并讨论了它作为某种全局快捷方式的用法。
有人能帮我弄清楚如何在外部实现我的成员函数并帮助我理解这本书背后的逻辑吗?
我的代码:
演示类.h
#ifndef Assignment_1_democlass_h
#define Assignment_1_democlass_h
class demoClass
{
public:
demoClass(int a = 5, int b = 10);
int max() const;
int getA() const; //my added code, not in provided text example
int getB() const; //my added code, not in provided text example
private:
int itemA, itemB;
};
#endif
主文件
#include "democlass.h"
#include <iostream>
#include <string>
using namespace std;
int main(int argc, const char * argv[])
{
demoClass obj1(7,9);
demoClass obj2(12);
demoClass obj3;
cout << obj1.getA() << " " << obj1.getB() << endl;
cout << obj2.getA() << " " << obj2.getB() << endl;
cout << obj3.getA() << " " << obj3.getB() << endl;
cout << endl;
cout << obj2.max() << endl << obj3.max();
return 0;
}
demoClass::demoClass(int a, int b){
itemA = a;
itemB = b;
}
int demoClass::max() const{
if (itemA > itemB)
return itemA;
else
return itemB;
};
int demoClass::getA() const{
return itemA;
};
int demoClass::getB() const{
return itemB;
};