新闻中心

EEPW首页 > 嵌入式系统 > 设计应用 > C++中创建头文件的方法

C++中创建头文件的方法

作者:时间:2016-12-01来源:网络收藏
创建头文件。(不带形参)

cpp通过类名+::+函数名被头文件链接。注意一定是类名+::!
函数代码放在cpp下的相应的函数名里,而头文件中的只是函数名,只负责提供映射。
animal.cpp
#include "animal.h"
#include
animal::animal()
{
cout<<"hello"<}
void animal::eat ()
{
cout<<"shift"<}

animal.h
//头文件只写函数名,提供链接地址。
#ifndef ANIMAL_H_H
#define ANIMAL_H_H
class animal
{
public:
animal();

void eat();
};
#endif

本文引用地址:http://www.eepw.com.cn/article/201612/324422.htm

-------------------------------------------------------------------------------------

如果不创建头文件就要写这么长的代码 可读性很差#include

class animal
{
public:
animal()
{
cout<<"animal construct"<
}
~animal()
{
cout<<"construct animal"<
}
virtual void breath()
{
cout<<"bubble2"<
}
void eat();//把主函数放在类外的方法
};
class fish:public animal
{
public:
fish()
{
}
~fish()
}
void breath()
{
}
};
void animal::eat()//函数类型,属于那个类。把一个函数的实现放到类之外。
{
}
void main()
{
}


关键词: C++头文

评论


相关推荐

技术专区

关闭