你能帮我写上面程序的头文件吗
时间: 2024-03-16 14:44:52 浏览: 80
C语言中的头文件可以自己写吗?
5星 · 资源好评率100%
当然可以,这里是一个简单的程序头文件的例子:
```c++
#ifndef MYHEADER_H
#define MYHEADER_H
#include <iostream>
#include <vector>
#include <string>
using namespace std;
void print_hello();
#endif
```
其中,`#ifndef`和`#define`是为了防止头文件的重复引用。`#include`用于导入需要使用的库,这里导入了`iostream`、`vector`和`string`库。`using namespace`是为了方便使用命名空间,这里使用了`std`命名空间。`void print_hello()`是一个函数的声明,具体的实现可以在其他的源文件中定义。
阅读全文