基础注意事项函数的声明可以多次,但是函数的定义只能有一次 函数的分文件编写 创建头文件 创建函数.cpp文件 在头文件里写函数的声明 在.cpp文件里写函数的定义 123456//swap.h文件#include<iostream>using namespace std;//实现两个数字交换的函数声明void swap(int a, int b); 123456789101112//swap.cpp文件#include "swap.h"void swap(int a, int b){ int temp = a; a = b; b = temp; cout << "a = " << a << endl; cout << "b = " << b << endl;} 123456789101112//main函数文件#include "swap.h"int main() { int a = 100; int b = 200; swap(a, b); system("pause"); return 0;} c++ author: tumytime link: http://tumytime.github.io/2024/08/10/【C-学习】函数/ Copyright notice: All articles on this website, unless otherwise stated, adopt CC BY-NC-ND 4.0 reprint policy. If reproduced, please indicate source! Prev: 【C++学习】指针 Next: 【C++学习】数组 你的赏识是我前进的动力 支付宝 微信