码迷,mamicode.com
首页 > 其他好文 > 详细

关于extern的使用

时间:2015-04-05 18:55:50      阅读:124      评论:0      收藏:0      [点我收藏+]

标签:extern 外部变量

1.同一个文件中

#include<iostream>

using namespace std;

void main()

{

extern int x;

cout<<x<<endl;

}

int x=2;


2.多文件使用(只要使用外部变量的文件和定义外部变量的文件在同一个工程即可)


func.cpp

#include "func.h"
#include <iostream>
int x=0;


int func()
{
    return x++;
}



func.h

int func();

main.cpp

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


extern int x;


int main()
{
    cout << "Hello world!" << endl;


    cout<<"x: "<<x<<endl;




    cout<<"func x: "<<func()<<endl;
    cout<<"x : "<<x<<endl;
    return 0;
}

技术分享


关于extern的使用

标签:extern 外部变量

原文地址:http://blog.csdn.net/wy7980/article/details/44889567

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