Tagged Questions
The global-variables tag has no wiki summary.
158
votes
7answers
175k views
Using global variables in a function other than the one that created them
A global variable created in one function cannot be used in another function directly.
Instead I need to store the global variable in a local variable of the function which needs its access. Am I ...
113
votes
9answers
68k views
Android: How to declare global variables?
I am creating an application which requires login. I created the main and the login activity.
In the main activity onCreate method I added the following condition:
public void onCreate(Bundle ...
30
votes
19answers
6k views
29
votes
20answers
3k views
When are global variables acceptable?
Everyone here seems to hate global variables, but I see at least one very reasonable use for them: They are great for holding program parameters that are determined at program initialization and not ...
27
votes
4answers
21k views
jQuery global variable best practice & options?
Currently I am working on a legacy web page that uses a ton of javascript, jquery, microsoft client javascript, and other libraries. The bottom line - I cannot rewrite the entire page from scratch as ...
19
votes
7answers
371 views
Should I use window.variable or var?
We have a lot of setup JS code that defines panels, buttons, etc that will be used in many other JS files.
Typically, we do something like:
grid.js
var myGrid = .....
combos.js
var myCombo = ...
18
votes
11answers
1k views
In game programming are global variables bad?
I know my gut reaction to global variables is "badd!" but in the two game development courses I've taken at my college globals were used extensively, and now in the DirectX 9 game programming tutorial ...
18
votes
3answers
2k views
Are global variables in PHP considered bad practice? If so, why?
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 ...
17
votes
1answer
241 views
Bug or hack? $GLOBALS
$GLOBALS["items"] = array('one', 'two', 'three', 'four', 'five' ,'six', 'seven');
$alter = &$GLOBALS["items"]; // Comment this line
foreach($GLOBALS["items"] as $item) {
echo get_item_id();
}
...
15
votes
3answers
2k 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?
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 what a ...
13
votes
3answers
177 views
Is std::cout guaranteed to be initialized?
What I know about C++ is that the order of the constructions (and destructions) of global instances should not be assumed.
While I'm writing code with a global instance which uses std::cout in the ...
13
votes
3answers
963 views
A way to avoid a common use of unsafePerformIO
I often find this Pattern in Haskell code:
options :: MVar OptionRecord
options = unsafePerformIO $ newEmptyMVar
...
doSomething :: Foo -> Bar
doSomething = unsafePerformIO $ do
opt <- ...
13
votes
4answers
2k views
How do I call setattr() on the current module?
What do I pass as the first parameter "object" to the function setattr(object, name, value), to set variables on the current module?
For example:
setattr(object, "SOME_CONSTANT", 42);
giving the ...
13
votes
4answers
536 views
Global variable implementation
When I write the following program:
file 1:
#include <stdio.h>
int global;
void print_global1() {
printf("%p\n", &global);
}
file 2:
#include <stdio.h>
char ...
13
votes
14answers
5k 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 ...
12
votes
9answers
243 views
Examples of the perils of globals in R and Stata
In recent conversations with fellow students, I have been advocating for avoiding globals except to store constants. This is a sort of typical applied statistics-type program where everyone writes ...
12
votes
4answers
241 views
How can I write classes that don't rely on “global” variables?
When I took my first programming course in university, we were taught that global variables were evil & should be avoided at all cost (since you can quickly develop confusing and unmaintainable ...
12
votes
5answers
18k views
JavaScript: Global variables?
When I use code like this, it works fine:
function removeWarning() {
var systemStatus = document.getElementById("system-status");
systemStatus.innerHTML = "";
}
function ...
12
votes
8answers
6k 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 ...
11
votes
3answers
531 views
If a “Utilities” class is evil, where do I put my generic code?
I generally live by the rule that Global variables / functions are evil and that every piece of code should live in the class to which it pertains.
This is a very easy rule to follow, and I believe ...
11
votes
3answers
466 views
When are global static const variables being initialized?
I tried to search the site for this question but didn't find this exactly, although this subject is being discussed a lot...
I have this declaration in a cpp file, not within any function:
static ...
11
votes
3answers
12k views
Android global variable
How can I create global variable keep remain values around the life cycle of the application regardless which activity running..
11
votes
2answers
6k views
How to implement dynamic arrays in Delphi
I originally had an array[1..1000] that was defined as a global variable.
But now I need that to be n, not 1000 and I don't find out n until later.
I know what n is before I fill the array up but I ...
10
votes
6answers
2k views
I've Heard Global Variables Are Bad, What Alternative Solution Should I Use?
I've read all over the place that global variables are bad and alternatives should be used. In Javascript specifically, what solution should I choose.
I'm thinking of a function, that when fed two ...
10
votes
6answers
31k views
Global Variables in Cocoa/Objective-C?
According to Cocoa Programming for Mac OS X, 3rd Edition, on page 202 (chapter 13):
You will be registering, reading, and
setting defaults in several classes in
your application. To make sure ...
9
votes
2answers
254 views
List all global variables
As noted elsewhere, you can list all user-defined symbols with this:
Names["Global`*"]
But I'd like to find just my global variables (I'm in the middle of some hairy debugging), not my function ...
9
votes
6answers
320 views
Why does local variable kill my global variable?
Sorry for this question, but this issue really screwed up my day.
The following Code alerts 10 as it should:
var globalId='10';
function check(){
alert(globalId);
}
check();
But this ...
9
votes
1answer
338 views
Static global variable used by inline member function
When you have a static global variable in a C++ header file, each translation unit that includes the header file ends up with its own copy of the variable.
However, if I declare a class in that same ...
9
votes
2answers
477 views
Which is better: Dependency Injection+Registry or Dependency Injection or Global Registry?
Firstly, I want to restrict this question to web development only. So this is language agnostic as long as the language is being used for web development. Personally, I am coming at this from a ...
9
votes
9answers
5k views
How to Avoid Global Variables in Javascript
We all know that global variables are anything but best practice. But there are several instances when it is difficult to code without them. What techniques do you use to avoid the use of global ...
9
votes
3answers
1k views
How to programmatically set a global (module) variable?
I would like to define globals in a "programmatic" way. Something similar to what I want to do would be:
definitions = {'a': 1, 'b': 2, 'c': 123.4}
for definition in definitions.items():
...
9
votes
7answers
24k views
In XSLT how do I increment a global variable from a different scope?
I am processing an XML file where I want to keep count of the number of nodes, so that I can use it as an ID as I write new nodes.
At the moment I have a global variable called 'counter'. I am able ...
9
votes
8answers
2k views
ok , global variable is condemned, singleton is despised, what's the alternative?
For desktop application that is. This is just a general question that maybe only need general answers.
9
votes
2answers
8k views
PHP session side-effect warning with global variables as a source of data
I'm trying to host a PHP web site that was given to me. I see this warning:
Warning: Unknown: Your script possibly
relies on a session side-effect which
existed until PHP 4.2.3. Please be
...
8
votes
1answer
153 views
How to use $a and $b in Perl subroutine
I would like to use $a and $b variables in my anonimous binary functions like it is done in sort {$a <=> $b} (1, 2, 3) but I can not figure out why code like
#!/usr/bin/env perl
use strict;
...
8
votes
5answers
287 views
Should ALL global variables be volatile-qualified?
In this example, does correctness require global_value to be declared volatile?
int global_value = 0;
void foo () {
++ global_value;
}
void bar () {
some_function (++global_value);
foo ...
8
votes
5answers
5k views
Global variables for node.js standard modules?
I know that global variables are bad.
But if I am using node's module "util" in 40 files in my framework, isn't it better to just declare it as a global variable like:
util = require('util');
in ...
8
votes
2answers
559 views
Compile redeclaration error of global variable in C++, but not in C
Suppose that I have those three files:
a.h
//a.h header
#include <stdio.h>
int int_variable;
void a_f()
{
printf("int_variable: %d\n", int_variable)
int_variable++;
}
b.h
//b.h ...
8
votes
1answer
2k views
Static initialization and destruction of a static library's globals not happening with g++
Until some time ago, I thought a .a static library was just a collection of .o object files, just archiving them and not making them handled differently. But linking with a .o object and linking with ...
8
votes
3answers
1k 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
14answers
2k 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 ...
8
votes
4answers
3k views
Confusion about global variables in python
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 should ...
7
votes
1answer
79 views
var keyword in try/catch expressions: JSLint bug or global assignment?
I noticed an interesting result from JSLint while researching a codereview question. JSLint complained that a variable was used before it was defined. Here is a shortened version of code that produces ...
7
votes
5answers
193 views
Require an arbitrary PHP file without leaking variables into scope
Is it possible in PHP to require an arbitrary file without leaking any variables from the current scope into the required file's variable namespace or polluting the global variable scope?
I'm wanting ...
7
votes
2answers
177 views
Detect if function is native to browser
I am trying to iterate over all the globals defined in a website, but in doing so I am also getting the native browser functions.
var numf=0; var nump=0; var numo=0;
for(var p in this) {
...
7
votes
2answers
174 views
What is the difference between assign() and <<- in R?
The normal approach to writing functions in R (as I understand) is to avoid side-effects and return a value from a function.
contained <- function(x) {
x_squared <- x^2
return(x_squared)
}
...
7
votes
4answers
815 views
Haxe for javascript without global namespace pollution?
I've known about haxe for a while, but never really played with it until yesterday. Being curious, I decided to port showdown.js, a javascript port of markdown.pl, to haxe. This was pretty ...
7
votes
3answers
2k views
How to get global access to enum types in C#?
This is probably a stupid question, but I can't seem to do it. I want to set up some enums in one class like this:
public enum Direction { north, east, south, west };
Then have that enum type ...
7
votes
7answers
420 views
Is it bad practice to have state in a static class?
I would like to do something like this:
public class Foo {
// Probably really a Guid, but I'm using a string here for simplicity's sake.
string Id { get; set; }
int Data { get; set; }
...
7
votes
2answers
1k views
How can I list global variables in MATLAB?
How can I see a list of what global variables are defined in MATLAB? (I am using R2009a).
I have hunted unfruitfully for this on Google and SO, so apologies if it has been asked before.