发布时间:2022-08-19 11:39
test1.h的头文件
#include
using namespace std;
class test1
{
public:
int sumFunc(int x, int y);
private:
};
test1.cpp的内容
#include "test1.h"
int test1::sumFunc(int x, int y) {
return x + y;
}
其他函数调用时:
test1 *a = new test1();
cout << a->sumFunc(11, 22) << endl;
**
.h文件
class UserManager
{
public:
UserManager();
void createOpenDbfunc();
.cpp文件中,实现这个函数, 在前边要加上 UserManager:: 这个类的名字。以及函数类型void,如果有返回值的函数,需要加上数据类型,比如:int,QString等
#include "usermanager.h"
UserManager::UserManager()
{
}
void UserManager::createOpenDbfunc(){
}
其他文件中,调用上边类的函数时的代码。要先声明并用 new 来创建。因为是指针所以是 -> 而不是 .
UserManager *a = new UserManager();
a->createOpenDbfunc(); //因为是指针所以是 -> 而不是 .