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

extern的用法

时间:2016-10-10 19:54:04      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:

extern作为外部函数声明的用法:

1. 可以扩展函数的应用范围;

107.h

#ifndef _107H_
#def _107H_

extern void func();
#endif

107.cpp

#include "stdafx.h"
#include <stdio.h>
#include <string.h>
#include "107.h"

voic func()
{
    printf("%d\n", x);
}

 

108.h

#ifndef _108H_
#def _108H_

extern void func1();
#endif

108.cpp

#include "stdafx.h"
#include <stdio.h>
#include <string.h>
#include "108.h"

voic func1()
{
    printf("%d\n", x);
}

109.cpp

#include "stdafx.h"
#include <stdio.h>
#include <string.h>
#include "107.h"
#include "108.h"

int main()
{
    func();
    func1();
    printf("%d", x);
}

输出结果为:

技术分享

 

extern的用法

标签:

原文地址:http://www.cnblogs.com/anlia/p/5946506.html

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