![]() |
Calling a Function Before Program's Startup
Certain applications need to invoke startup functions that run before the main program starts. For example, polling, billing, and logger functions must be invoked before the actual program begins. The easiest way to achieve this is by calling these functions from a constructor of a global object. Because global objects are conceptually constructed before the program's outset, these functions will run before main() starts.
For example: Code: CPP
The global object log is constructed before main() starts. During its construction, log invokes the function activate_log(). Thus, when main() starts, it can read data from the log file. |
Re: Calling a Function Before Program's Startup
Instead of global variables you can have some static functions as well.
|
Re: Calling a Function Before Program's Startup
Yeah! that's a good idea too!
|
Re: Calling a Function Before Program's Startup
How do implement a static function. Is it by static function name. I don't understand the concept of static.
Thanks for your help. Your help is greatly appreciated by me and others. |
Re: Calling a Function Before Program's Startup
Using the static keyword.
|
Re: Calling a Function Before Program's Startup
I not fully understand the concept of static. The static variable is exist even though the function has exit.
The static function pnly can call locally. I don't know this is correct concept. Please correct me if i misunderstand the concept. Thanks ofr oyur help. Your help is greatly appreciated by me and others. |
Re: Calling a Function Before Program's Startup
Quote:
Quote:
|
Re: Calling a Function Before Program's Startup
Quote:
Thanks for oyur help. Your help is greatly appreciated by me and others. |
Re: Calling a Function Before Program's Startup
I just wanted to know what you meant by the text in the quote?
|
Re: Calling a Function Before Program's Startup
I don't understand the text in quote.
Thanks for oyur help. |
| All times are GMT +5.5. The time now is 19:01. |