0
votes
2answers
26 views
Share global logger among module/classes
What is the best (proper) way to share a logger instance amongst many ruby classes?
Right now I just created the logger as a global $logger = Logger.new variable, but I have a fee …
4
votes
5answers
138 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 …
0
votes
2answers
41 views
Logging events in Python; How to log events inside classes?
Hello guys.
I built (just for fun) 3 classes to help me log some events in my work.
here are them:
class logMessage:
def __init__(self,objectName,message,messageType):
…
0
votes
3answers
130 views
Instantiating at global level (C++)
Hi, I get the following error with the code below.
expected constructor, destructor, or type conversion before '=' token
--
#include <string>
#include <map>
class …
0
votes
3answers
80 views
How/where to release global variables in objective c? -iphone
I have gone through the following question.
http://stackoverflow.com/questions/1528696/objective-c-where-do-you-dealloc-global-static-variables
But the question is related on sta …
4
votes
3answers
104 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 configurat …
0
votes
2answers
34 views
codeigniter, global variable for beta project path, and access from everywhere.
Hi friends,
I use CodeIgniter, I'm happy with that, but I have a question.
I build my projects under /www/projectname/beta/... directory, so at my code, at many parts like includ …
0
votes
4answers
284 views
global variable approach in C# Windows Forms app? (is public static class GlobalData the best)
Hi,
I want to have some custom configuration (read in from file) available throughout my C# windows forms application.
Is the concept of say:
creating a static class, e.g. "pub …
7
votes
8answers
473 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 g …
0
votes
2answers
58 views
Global Variables in a WordPress Plugin
I am trying to create my first WordPress plugin. Even in trying to create the install function, things are being a pain. I want to set some global variables specific to my plugin r …
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 …
6
votes
7answers
190 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 t …
3
votes
4answers
147 views
Global variable in Qt, how to?
I'm using Qt and in the main method I need to declare an object that I need to use in all my other files. How can I access that object in the other files? (I need to make it global …
1
vote
7answers
119 views
Global variables in PHP?
Does PHP have global variables that can be modified by one running script and read by another?
1
vote
7answers
207 views
[C++] How to solve the problem of global access?
Hi,
I'm building an app, and I need the wisdom of the SO community on a design issue.
In my application, there needs to be EXACTLY one instance of the class UiConnectionList, Ui …
