一. 简单C++ 实践的“世界之声”方案;不幸的是,在汇编后,我发现了一些错误:
预计......
错误:Hello World (std:string, :string:string)与HelloWorld的类别不符。
下面是我的法典,谁能帮助我了解我失踪/忽视的是什么? 感谢。
<>Header:
1 #ifndef HELLOWORLD_H_
2 #define HELLOWORLD_H_
3 #include <string>
4
5 class HelloWorld
6 {
7 public:
8 HelloWorld();
9 HelloWorld(string fName, string lName);
10 ~HelloWorld();
11 };
12
13 #endif
<>执行>:
1 #include <iostream>
2 #include <string>
3 #include "HelloWorld.h"
4
5 using namespace std;
6
7 HelloWorld::HelloWorld()
8 {
9 cout << "Hello, anonymous!";
10 }
11
12 HelloWorld::HelloWorld(string fName, string lName)
13 {
14 cout << "Hello, " << fName << << lName << endl;
15 }
16
17 HelloWorld::~HelloWorld()
18 {
19 cout << "Goodbye..." << endl;
20 }