vote up 0 vote down star

Possible Duplicates:
What does “static” mean in a C program?
Why declare a variable or function static in C?

could nybody please tell me wht is the use of static functions in c. as far as i know they are visible to the translation unit in which they are defined but while doing application programming where they are generally used and in what scenarios could they be handful?please advice.

thanks in advance.

flag

78% accept rate
Duplicate with stackoverflow.com/questions/1665250/… (which itself was near duplicate with others...) – mjv Nov 6 at 6:10

closed as exact duplicate by Carl Norum, mjv, Artelius, Naveen, Kinopiko Nov 6 at 6:30

3 Answers

vote up 1 vote down

Declaring a function static in C effectively makes sure that the function is not visible outside of that file (or compilation unit). In effect, it's about as close as you'll get to a private function in this imperative language.

When you're developing a library to be used by other programmers, it's standard practice to have your "private" or otherwise internal functions marked as static in their own file, so it's clear that users of your library should not need to use those internal functions.

link|flag
vote up 0 vote down

You are absolutely right. Static function are only visible to the compilation unit.

I can be used like a private function in OOP, to hide implementation details.

If you are using C with a C++ compiler you can use a anonymous namespace to achieve this.

link|flag
vote up 0 vote down

Static functions serve many purposes, however, the most prominent purpose is to hide implementation details. A given file may declare a set of interface functions as well as many helper functions that are only used internally. If you leave all of the functions as global, without hiding the helpers with static, how will users of your interface know which functions they should call? Marking all non-API functions as static clears that confusion.

Some other technical reasons for declaring functions as static: reduce symbol table pollution, avoid namespace collisions, increase cohesion (static belongs to your module, and only your module)

link|flag

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