此处记录一个小知识。

这是练习代码的项目结构:

在Hero.h中包含了

#include <string>
#include <iostream>

当在Hero.cpp与main.cpp中包含Hero.h时,就不用再次包含上述两个头了。(就是不知道这样规范不规范...)

 

下面是Hero.h的内容:

#pragma once
#include <string>
#include <iostream>

using namespace std;//此处声明命名空间后  在包含该头文件的.cpp文件中不用再声明,就可以使用cout
class Hero
{
private:
	string name;
	int HP;
	int MP;
public:
	void setHP(int);
	void setMP(int);
	void show();
};

 

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐