由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - 用extern keyword定义的变量
相关主题
谁给科普一下Linux里lib search怎么运作的?make的时候能不能指定某个路径下的ld? (转载)
c++ does not check const for extern variable?问一个Visual Studio 2003 到 2005的问题
老哥使用的一项技术: extern定义全局变量有人说这个办法可以解决栈溢出
g++ problem!!!!弱问一句关于pthread的
Re: [转载] 问一问题c的memory layout和c++的memory layout有什么不同?
How do you change the linker with configure script?Intel C++ compiler 求教
linker problem in VC恨透了以linux为首的open source (转载)
should the .dll and .lib have the same name?我有个很傻的问题,关于function call via pointer
相关话题的讨论汇总
话题: extern话题: 变量话题: 定义话题: keyword话题: file
进入Programming版参与讨论
1 (共1页)
P********e
发帖数: 2610
1
如何在 compile确定是否变量被link到?
P********e
发帖数: 2610
2
没人有方法吗

【在 P********e 的大作中提到】
: 如何在 compile确定是否变量被link到?
t****t
发帖数: 6806
3
if the name is not found, it's link error. so it's automatically ensured.

【在 P********e 的大作中提到】
: 没人有方法吗
P********e
发帖数: 2610
4
我就是要在linker link之前检测,如何做处理

【在 t****t 的大作中提到】
: if the name is not found, it's link error. so it's automatically ensured.
t****t
发帖数: 6806
5
elaborate your question then.

【在 P********e 的大作中提到】
: 我就是要在linker link之前检测,如何做处理
P********e
发帖数: 2610
6
file a 里面定义一个global的 int a;
file b 用extern定义extern int a;
file c include file b
file a 也include file b
当c引用的时候会出问题,因为extern int a没有空间
a就没问题
所以b需要一个branch statement

【在 t****t 的大作中提到】
: elaborate your question then.
t****t
发帖数: 6806
7
看不懂, 你确定你说的是C?
show your code

【在 P********e 的大作中提到】
: file a 里面定义一个global的 int a;
: file b 用extern定义extern int a;
: file c include file b
: file a 也include file b
: 当c引用的时候会出问题,因为extern int a没有空间
: a就没问题
: 所以b需要一个branch statement

P********e
发帖数: 2610
8
算了
呵呵,反正有turnabound

【在 t****t 的大作中提到】
: 看不懂, 你确定你说的是C?
: show your code

1 (共1页)
进入Programming版参与讨论
相关主题
我有个很傻的问题,关于function call via pointerRe: [转载] 问一问题
问一个windows下编译openGL code的问题How do you change the linker with configure script?
有人用DEV-C++吗?linker problem in VC
VC++: Module-Definition (.def) Files:should the .dll and .lib have the same name?
谁给科普一下Linux里lib search怎么运作的?make的时候能不能指定某个路径下的ld? (转载)
c++ does not check const for extern variable?问一个Visual Studio 2003 到 2005的问题
老哥使用的一项技术: extern定义全局变量有人说这个办法可以解决栈溢出
g++ problem!!!!弱问一句关于pthread的
相关话题的讨论汇总
话题: extern话题: 变量话题: 定义话题: keyword话题: file