C++ 的函式分檔案編寫

注目羔羊發表於2020-10-15

分為四步:

  1. 建立 .h 的標頭檔案;
  2. 建立 .cpp 的原始檔;
  3. 在標頭檔案寫函式宣告;
  4. 在原始檔寫函式定義。

栗子:

數值交換函式 void swapInt(int, int);

// swapInt.h
void swapInt (int a, int b);
// swapInt.cpp
#include <iostream>
#include "swapInt.h"
using namespace std;
void swapInt (int a, int b)
{
	int temp = a;
	a= b;
	b = temp;
	cout >> "交換後: " << a << " " << b << endl;
}
// main 函式
#include <iostream>
#include "swapInt.h"
using namespace std;

int main()
{
	swapInt (10, 20);	// 呼叫
	
	system("pause");
	return 0;
}
結果為: 20 10

相關文章