您的位置 首页 测评

C++中创立头文件的办法

创建头文件。(不带形参)cpp通过类名+::+函数名被头文件链接。注意一定是类名+::!函数代码放在cpp下的相应的函数名里,而头文件中的

创立头文件。(不带形参)

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

————————————————————————————-

假如不创立头文件就要写这么长的代码 可读性很差#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()
{
}

声明:本文内容来自网络转载或用户投稿,文章版权归原作者和原出处所有。文中观点,不代表本站立场。若有侵权请联系本站删除(kf@86ic.com)https://www.86ic.net/ceping/317585.html

为您推荐

联系我们

联系我们

在线咨询: QQ交谈

邮箱: kf@86ic.com

关注微信
微信扫一扫关注我们

微信扫一扫关注我们

返回顶部