文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>头文件中用static变量

头文件中用static变量

时间:2010-10-14  来源:wwm

编译时候,头文件会添加到源文件中。所以头文件中定义static 变量, 实际上是在多个源文件内,都有一个该变量,是独立的(注意)。
工程中一般不要这样使用。

//a.h该文件内定义g_aa静态

#ifndef __A_H__
#define __A_H__
static int g_aa;
#endif

//aa.h

#ifndef __AA_H__
#define __AA_H__
void fun();
#endif

//aa.cpp

#include <stdio.h>
#include <stdlib.h>
#include "a.h"

void fun()
{
        g_aa =2;
        printf("addr=%x\n",&g_aa);
}

//bb.h

#ifndef __BB_H__
#define __BB_H__

void fun2();
#endif

//bb.cpp

#include <stdio.h>
#include <stdlib.h>
#include "a.h"

void fun2()
{
        g_aa =3;
        printf("22 addr=%x\n",&g_aa);
}

//main.cpp

#include <stdio.h>
#include <stdlib.h>
#include "aa.h"
#include "bb.h"
#include "a.h"
int main(int argc, char**argv)
{
        fun();
        fun2();
        return 0;
}


运行结果是多个地址,显然是独立的


相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载