我很难将一个类放入一个单独的文件并在main
. 下面是我的简单代码。
想知道我如何使用该getKey()
功能int main()
#include "stdafx.h"
#include <iostream>
#include <string>
#include "TravelFunctions.h"
using namespace std;
TravelFunctions::getKey()
{
cout << "i am a bananna" << endl;
}
我的TravelFunction.h
课
class TravelFunctions
{
public:
getKey();
}
我的主要课程
#include "stdafx.h"
#include <iostream>
#include <string>
#include "TravelFunctions.h"
using namespace std;
int main()
{
getKey bo;
return 0;
}