12
votes
3answers
571 views
C# : So if a static class is bad practice for storing global state info, what’s a good alternative that offers the same convenience?
Hi,
I've been noticing static classes getting a lot of bad rep on SO in regards to being used to store global information. (And global variables being scorned upon in general) I'd just like to know …
8
votes
3answers
297 views
How lazy can C++ global initialization be?
I'm used to thinking of all initialization of globals/static-class-members as happening before the first line of main(). But I recently read somewhere that the standard allows initialization to happen …
8
votes
13answers
663 views
Why are global variables bad, in a single threaded, non-os, embedded application
Most of the objections I see to using global variables make sense since they refer to issues of multiple threads, thread safety, etc.
But in a small, single threaded, non-OS, case, what objections do …
7
votes
8answers
581 views
C++ singleton vs. global static object
A friend of mine today asked me why should he prefer use of singleton over global static object?
The way I started it to explain was that the singleton can have state vs. static global object …
7
votes
7answers
223 views
PHP best practices: repass variables from config file when calling functions or use global?
I have a program that I use on several sites. It uses require('config.php'); to set any site dependant variables like mysql connect info, paths, etc.
Let's say that I use one of these site-dependant …
7
votes
12answers
1k views
When is it ok to use a global variable in C?
Apparently there's a lot of variety in opinions out there, ranging from, "Never! Always encapsulate (even if it's with a mere macro!)" to "It's no big deal - use them when it's more convenient than …
6
votes
3answers
281 views
Avoiding global variables in embedded programming
In the type of embedded programming I'm getting into, determinism and transparency of the running code are highly valued. What I mean by transparency is, for instance, being able to look at arbitrary …
6
votes
10answers
516 views
Do I need a semaphore when reading from a global structure?
A fairly basic question, but I don't see it asked anywhere.
Let's say we have a global struct (in C) like so:
struct foo {
int written_frequently1;
int read_only;
int written_frequently2;
};
…
5
votes
3answers
155 views
Python game programming: is my IO object a legitimate candidate for being a global variable?
Hello Stackoverflow,
I'm programming a game in Python, where all IO activities are done by an IO object (in the hope that it will be easy to swap that object out for another which implements a …
5
votes
6answers
505 views
How can I access a shadowed global variable in C?
How can I access a shadowed global variable in C? In C++ I can use :: for the global namespace.
5
votes
4answers
750 views
Confusion about global variables in python
Hi,
I'm new to python, so please excuse what is probably a pretty dumb question.
Basically, I have a single global variable, called _debug, which is used to determine whether or not the script …
5
votes
17answers
1k views
Are global variables bad?
In C/C++, are global variables as bad as my professor thinks they are?
4
votes
5answers
183 views
Global variables v Settings in C#
I have read in various places that having variables with global scope, i.e. a public static class with static members, is considered going against the philosophy of OO, and is not good design. (For …
4
votes
3answers
148 views
Are global variables in PHP considered bad practice?
function foo () {
global $var;
// rest of code
}
In my small PHP projects I usually go the procedural way. I generally have a variable that contains the system configuration, and when I nead …
4
votes
1answer
48 views
How do you localize a number of legacy globals without eval?
I'm asking this question because I finally solved a problem that I have been trying to find a technique for in a number of cases. I think it's pretty neat so I'm doing a Q-and-A on this.
See, if I …
