#pragma oncec++
/* 將a.h能夠當作是c++裏面的a類的聲明,注意在.h文件中不可定義外部變量,只能聲明外部變量,意思是不能出現extern int abc = 1*/input
/*相似於public*/
extern int foo1(int input);/* 外部方法*/
extern int abc;/* 外部變量,聲明變量abc*/變量
/*相似於private*/
static int foo2(int input);/* 內部方法*/
static int abd = 20;/* 內部變量,定義變量abc, 最好賦予初值*/方法
/* 外部常量最好使用宏定義 */
#define MAX_NUM 2001;static
/* 內部常量最好使用const定義 */
static const int abe = 20;文件
#include "C.h"co
/* 將a.h能夠當作是c++裏面的a類的定義*/return
int abc = 10; /* 定義外部變量 */ab
int foo1(int input) /* 定義外部方法 */
{
abd++;
return 1;
}const
int foo2(int input) /* 定義內部方法 */{ return 1;}