Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is the point of making a function static in C?

share|improve this question
6  
There are no such things as "methods" in C. I think you're confused with C++. – nightcracker Mar 15 '11 at 23:43
6  
C has no methods, they're called functions :) – pmg Mar 15 '11 at 23:43
@nightcracker ; right woops – Cenoc Mar 15 '11 at 23:43
Isn't that explained in your C textbook? If not, find a better one. – Jim Balter Mar 16 '11 at 4:23
3  
@nightcracker: There are no such things as "methods" in C++. I think you're confused with Objective-C. – Bo Persson Mar 16 '11 at 16:17
show 1 more comment

3 Answers

up vote 23 down vote accepted

Hiding it from other translations units: encapsulation.

helper_file.c

int f1(int); /* prototype */
int f2(int); /* prototype */

int f1(int foo) {
    return f2(foo); /* ok, f2 is in the same translation unit */
                    /* (basically same .c file) as f1         */
}

static int f2(int foo) {
    return 42 + foo;
}

main.c:

int f1(int); /* prototype */
int f2(int); /* prototype */
int main(void) {
    f1(10); /* ok, f1 is visible to the linker */
    f2(12); /* nope, f2 is not visible to the linker */
}
share|improve this answer

pmg is spot on about encapsulation; beyond hiding the function from other translation units (or rather, because of it), making functions static can also confer performance benefits in the presence of compiler optimizations.

Because static functions cannot be called from anywhere outside of the current translation unit, the compiler controls all call points into a static function. This means that it is free to use a non-standard ABI, inline it entirely, or perform any number of other optimizations that might not be possible for a function with external linkage.

share|improve this answer
...unless the function's address is taken. – caf Mar 16 '11 at 0:06
@caf: absolutely. – Stephen Canon Mar 16 '11 at 16:39

The static keyword in C is used in a compiled file (.c as opposed to .h) so that the function exists only in that file.

Normally, when you create a function, the compiler generates cruft the linker can use to, well, link a function call to that function. If you use the static keyword, other functions within the same file can call this function (because it can be done without resorting to the linker), while the linker has no information letting other files access the function.

share|improve this answer
3  
This is extremely simplified and uses piss-poor terminology. Use at your own risk. – Alex Brault Mar 15 '11 at 23:52

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.