創建頭文件。(不帶形參)
cpp通過類名+::+函數名被頭文件鏈接。注意一定是類名+::!
函數代碼放在cpp下的相應的函數名里,而頭文件中的只是函數名,只負責提供映射。
animal.cpp
#include "animal.h"
#include <iostream.h>
animal::animal()
{
cout<<"hello"<<endl;
}
void animal::eat ()
{
cout<<"shift"<<endl;
}
animal.h
//頭文件只寫函數名,提供鏈接地址。
#ifndef ANIMAL_H_H
#define ANIMAL_H_H
class animal
{
public:
animal();
void eat();
};
#endif
-------------------------------------------------------------------------------------
如果不創建頭文件就要寫這么長的代碼 可讀性很差#include<iostream.h>