今天,在写条件编译的时候,出现了在函数外部给全局变量赋值的情况,gcc报错,那么c语言为什么不允许在函数外部给变量赋值呢?为什么声明变量的时候可以对变量进行赋值?
出错代码:
/*
2 * =====================================================================================
3 *
4 * Filename: 2.c
5 *
6 * Description:
7 *
8 * Version: 1.0
9 * Created: 2014年10月30日 16时25分41秒
10 * Revision: none
11 * Compiler: gcc
12 *
13 * Author: 3me (),
14 * Organization:
15 *
16 * =====================================================================================
17 */
#include <stdlib.h>
#include <stdio.h>
int i = ;
i = ; /*
24 * === FUNCTION ======================================================================
25 * Name: main
26 * Description:
27 * =====================================================================================
28 */
int
main ( int argc, char *argv[] )
{
printf("%d.\n", i ); return EXIT_SUCCESS;
} /* ---------- end of function main ---------- */ .c , 顶端
.c| col | 警告: 数据定义时没有类型或存储类 [默认启用]
.c| col | 警告: 在‘i’的声明中,类型默认为‘int’ [-Wimplicit-int]
.c| col | 错误: ‘i’重定义
.c| col | 附注: ‘i’的上一个定义在此
~
思考:
在函数外部对变量的声明,是为了在编译阶段给程序分配内存空间,因此(在函数外部)声明变量的时候对变量进行赋值,只是对分配的内存空间进行初始化。但程序的内部,函数的调用顺序是无序的(并不是在文件中从上到下依次执行),如下图,因此,如果c的语法允许在函数外部对变量赋值,则变量的值是不可预测的。
* =====================================================================================
*
* Filename: .c
*
* Description:
*
* Version: 1.0
* Created: 2014年10月30日 16时50分05秒
* Revision: none
* Compiler: gcc
*
* Author: 3me (),
* Organization:
*
* =====================================================================================
*/
#include <stdlib.h>
#include <stdio.h>
int i = ;
i = ;
#include <stdlib.h>
/*
24 * === FUNCTION ======================================================================
25 * Name: main
26 * Description:
27 * =====================================================================================
28 */
int
main ( int argc, char *argv[] )
{
i++;
fun1();
return EXIT_SUCCESS;
} /* ---------- end of function main ---------- */
/*
37 * === FUNCTION ======================================================================
38 * Name: fun1
39 * Description:
40 * =====================================================================================
41 */
i = ;
void
fun1 ( <+argument list+> )
{
i = ;
return <+return value+>;
} /* ----- end of function fun1 ----- */ "3.c" 49L, 1215C 已写入