我是新的C ++,我对Xcode中的单独文件类有疑问。我写了一个试图精益课程的程序,但是我收到了一个错误。任何人都可以教我如何做到这一点吗?
我包含我在下面尝试过的程序
这是(主要的CCP):
#include <iostream>
#include "hhhhhhhhhhhhhhhh.h"
using namespace std;
int main ( int argc, char ** argv )
{
bassam bo;
bo.bassamfunction();
}
这是(.h):
#ifndef __try_some_concspte__hhhhhhhhhhhhhhhh__
#define __try_some_concspte__hhhhhhhhhhhhhhhh__
#include <iostream>
class bassam{
public:
void bassamfunction();
};
#endif /* defined(__try_some_concspte__hhhhhhhhhhhhhhhh__) */
这是(CCP):
#include <iostream>
#include "hhhhhhhhhhhhhhhh.h"
using namespace std;
bassam::bassamfunction()
{
cout << " heloo I am here "<< endl ;
}
答案 0 :(得分:0)
您的问题是{。{1}}在.cpp文件中没有返回类型。这应该更改为bassam::bassamfunction()
。