I've seen the word static used in different places in C code; is this like a static function/class in C# (where the implementation is shared across objects)?
|
|
(1) is the more foreign topic if you're a newbie, so here's an example:
This prints:
This is useful for cases where a function needs to keep some state between invocations, and you don't want to use global variables. Beware, however, this feature should be used very sparingly - it makes your code not thread-safe and harder to understand. (2) Is used widely as an "access control" feature. If you have a .c file implementing some functionality, it usually exposes only a few "public" functions to users. The rest of its functions should be made Quoting Wikipedia:
See here and here for more details. And to answer your second question, it's not like in C#. In C++, however, |
|||||||||||||||||||||
|
|
Short answer ... it depends.
|
|||||||
|
|
Depends:
Whould return 1,2,3.. and so on --- the variable is not on stack.
Means that this function has scope only in this file. So if a.c and b.c can have different
In most C libraries all "private" functions are static and most "public" are not. |
|||||
|
|
From Wikipedia:
|
|||
|
|
|
|
||||
|
|
|
If you declare this in a mytest.c file:
Then this variable can only be seen from this file. The variable cannot be exported anywhere else. If you declare inside a function the value of the variable will keep its value each time the function is called. A static function cannot be exported from outside the file. So in a *.c file, you are hiding the functions and the variables if you declare them static. |
||||
|
|
|
In C, static has two meanings, depending on scope of its use. In the global scope, when an object is declared at the file level, it means that that object is only visible within that file. At any other scope it declares an object that will retain its value between the different times that the particular scope is entered. For example, if an int is delcared within a procedure:
the value of 'i' is initialized to zero on the first call to the procedure, and the value is retained each subsequent time the procedure is called. if 'i' were printed it would output a sequence of 0, 1, 2, 3, ... |
||||
|
|
|
an example to clarify the multifile scope usage for functions and variables: a.h
a.c
main.c
output:
interpretation there are two separate variables for both there is a single variable usage if a global variable/function is meant to be used on a single file, declare it static to prevent it from getting redefined elsewhere if a global variable is meant to be used across multiple files, define it once and use extern elsewhere. Use this with caution, or you risk to redefine things. try it yourself I have this example on my github, so if anyone wants to play with it, clone, go into |
||||
|
|
|
If you declare a variable in a function static, its value will not be stored on the function call stack and will still be available when you call the function again. If you declare a global variable static, its scope will be restricted to within the file in which you declared it. This is slightly safer than a regular global which can be read and modified throughout your entire program. |
|||
|
|
|
There is one more use not covered here, and that is as part of an array type declaration as an argument to a function:
In this context, this specifies that arguments passed to this function must be an array of type |
|||
|
|