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

I'm writing a scientific program with lots of knobs. Rather than constantly add and remove command-line options, I've been adding scoped extern variables for extra bits of configuration. These variables are used only in one local scope, and defined together in a dedicated source file args.cpp. That file includes no headers, so it only takes a second to recompile it and relink the executable to change any options.

// big_slow_compiling_source.cpp:

{
    extern double fudge_rate;
    quantity += correction * fudge_rate;
}

// args.cpp:

/* Configuration for big_slow_compiling_source.cpp: */
double fudge_rate = 3.2;

Is there a name for this idiom? I've been calling them "local externs" to myself but there must be better terminology.

Any known pitfalls?

share|improve this question
1  
1. Why are you using global variables? 2. Why aren't you declaring them normally in a header file? 3. The usual pitfalls apply: If the two files go out of sync, you'll get mysterious linker errors (if you're very lucky), runtime crashes (if you're lucky), or just weird program behavior. – melpomene Nov 28 '12 at 9:20
@melpomene The answer to all these questions is that each variable is only used in one place. The way I declare them guarantees that. I could accidentally remove one from the file but still define it in args.cpp, I suppose. But any other error I can think of would be flagged by the linker. – Potatoswatter Nov 28 '12 at 9:21
1  
It guarantees nothing. You can do extern int foo; foo = 42; anywhere. – melpomene Nov 28 '12 at 9:22
@melpomene Why would I assign to a configuration variable? I suppose making them const would "fix" that.. – Potatoswatter Nov 28 '12 at 9:25
OK, then you can still extern int foo; do_stuff_with(foo); anywhere. How exactly does not declaring them in a header file "guarantee" anything? – melpomene Nov 28 '12 at 9:27
show 5 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.