码迷,mamicode.com
首页 > 编程语言 > 详细

C++ - 函数的分文件编写

时间:2020-06-07 21:13:22      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:头文件   col   定义   c++   end   bsp   iostream   文件中   names   

思路:

创建.h的头文件和.cpp的源文件(不是主函数所在cpp)
头文件中写函数声明
源文件中写函数定义

 

注意:

这三个代码再codeblocks上不能用,编译器G++的问题?

devc++ 难道也是??

先越过这个,等下次换了Qt再来验证,

反正,

vs和Linux是可以的。


主函数:

#include<iostream>
#include "swapp.h"
using namespace std;

int main()
{
    int x=1,y=2;
    swapp(x,y);
    return 0;
}

 

swapp.h:

#include<iostream>
using namespace std;

void swapp(int x,int y); // 函数声明

 

swapp.cpp:

#include "swapp.h" //把cpp和h关联起来

void swapp(int x,int y)
{
    int t=x;
    x=y;
    y=t;
    //cout包含在另一个头文件中
    //所以需要加iostrem头文件
    cout<<"x = "<<x<<endl;
    cout<<"y = "<<y<<endl;
}

 

C++ - 函数的分文件编写

标签:头文件   col   定义   c++   end   bsp   iostream   文件中   names   

原文地址:https://www.cnblogs.com/OFSHK/p/13062206.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!