Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
392 views
in Technique[技术] by (71.8m points)

c - Access of static variable from one file to another file

I recently came across the question like how to access a variable which declared static in file1.c to another file2.c?

Is it possible to access static variable?

My understanding about static keyword in C is,

static is "internal linkage", so they are accessible only from one compilation unit - the one where they were defined. Objects declared with internal linkage are private to single module.

As one of my friend suggest me below solution.

In file1.c

   #include <stdio.h>

   int main()
   {
          int b=foo();
          printf("%d",b);
          return 0;
   }

in file2.c

   static int a=25;

   int foo()
   {
        return a;
   }

compiled by gcc file1.c file2.c -o file

If I do above I can access the variable.

So my questions are:

  1. Does the above program violate static variable rules?

  2. If not, why is this so, and is there any other way to access static variable except including file (#include <…>) not like this.

    How am I able to access a static variable from another file?

    In C, how do I restrict the scope of a global variable to the file in which it's declared?

  3. Correct me if I'm wrong with static variable concept and if any better solutions are available to access static variable?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

1) does the above program violate static variable rules?

No you are not vailoting any rules. Here foo function create copy of value of that static variable and used in other file. Its fine.

2) If not why is this so, and is there any other way to access static variable except including file (#include<>) not like this How am I able to access a static variable from another file?

Static variable are only mean to use in that file only.

You can not use that variable making them extern in other files.

Another dirty hack is to get pointer of that static variable and make that as global pointer and making that as extern in another file you can use that static variable.

file1.c

 #include<stdio.h>
  static int a=25;
  int* ptr = &a;

file2.c

#include<stdio.h>
extern int *ptr;

   int main()
   {
          printf("%d",*ptr);
          return 0;
   }

Correct me if I'm wrong with static variable concept and if any better solutions are available?

  1. A static variable has a lifetime extends across the entire run of the program

  2. If you do not initialize static variable with some value then its default value would be 0.

  3. A static variable has scope limited to its file only. You can not access it by name from a different file.

  4. You have temp1.c and temp2.c both are getting compiled together then also you can have static variable of same name in both files — and they are separate variables.

In C, how do I restrict the scope of a global variable to the file in which it's declared?

By making that global variable as static.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...