博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C++ 全局变量与局部变量
阅读量:5083 次
发布时间:2019-06-13

本文共 750 字,大约阅读时间需要 2 分钟。

/****Lession1.h****/ extern bool a; extern int b; extern float c; extern double d; extern unsigned int e; extern long f; extern unsigned long g; extern char h; extern long double i; /****Lession1.cpp****/ #include "stdafx.h" #include "Lession1.h" bool a; int b; float c; double d; unsigned int e; long f; unsigned long g; char h; long double i; /****Test.cpp****/ #include "stdafx.h" #include 
#include "Lession1.h" using namespace std; int _tmain(int argc, _TCHAR* argv[]) { int b=2; ::a = true; ::b = 1; ::c = float(); ::d = double(); ::e = unsigned int(); ::f = long(); ::g = unsigned long(); ::h = char(); ::i = long double(); cout<<"全局变量 b="<<::b<

转载于:https://www.cnblogs.com/handongdong/archive/2011/10/25/2223758.html

你可能感兴趣的文章
HDU 4635 Strongly connected
查看>>
ASP.NET/C#获取文章中图片的地址
查看>>
Spring MVC 入门(二)
查看>>
格式化输出数字和时间
查看>>
页面中公用的全选按钮,单选按钮组件的编写
查看>>
java笔记--用ThreadLocal管理线程,Callable<V>接口实现有返回值的线程
查看>>
BZOJ 1047 HAOI2007 理想的正方形 单调队列
查看>>
各种语言推断是否是手机设备
查看>>
这个看起来有点简单!--------实验吧
查看>>
PHP count down
查看>>
JVM参数调优:Eclipse启动实践
查看>>
(旧笔记搬家)struts.xml中单独页面跳转的配置
查看>>
不定期周末福利:数据结构与算法学习书单
查看>>
strlen函数
查看>>
python的列表与shell的数组
查看>>
关于TFS2010使用常见问题
查看>>
软件工程团队作业3
查看>>
python标准库——queue模块 的queue类(单向队列)
查看>>
火狐、谷歌、IE关于document.body.scrollTop和document.documentElement.scrollTop 以及值为0的问题...
查看>>
深入理解JVM读书笔记--字节码执行引擎
查看>>