active questions tagged global-variables - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T01:29:10Zhttp://stackoverflow.com/feeds/tag/global-variableshttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1800250/is-there-a-better-way-to-create-this-game-loop-c-windows3Is there a better way to create this game loop? (C++/Windows)Keand642009-11-25T22:02:17Z2009-11-27T17:13:30Z
<p>I'm working on a Windows game, and I have this:</p>
<pre><code>bool game_cont;
LRESULT WINAPI WinProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam)
{
switch(msg)
{
case WM_QUIT: case WM_CLOSE: case WM_DESTROY: game_cont = false; break;
}
return DefWindowProc(hWnd, msg, wParam, lParam);
}
int WINAPI WinMain(/*lots of parameters*/)
{
//tedious initialization
//game loop
while(game_cont)
{
//give message to WinProc
if(!GameRun()) game_cont = false;
}
return 0;
}
</code></pre>
<p>and I am wondering if there is a better way to do this (ignoring timers &c. for right now) than to have <code>game_cont</code> be global. In short, I need to be able to exit the while in <code>WinMain</code> from <code>WinProc</code>, so that if the user presses the closes out of the game in a way other that the game's in game menu, the program wont keep running in memory. (As it did when I tested this without the <code>game_cont..</code> statement in <code>WinProc</code>.</p>
<p>Oh, and on a side note, <code>GameRun</code> is basically a bool that returns false when the game ends, and true otherwise.</p>
http://stackoverflow.com/questions/1806387/global-variables-in-visual-c0Global variables in Visual C#Phenom2009-11-27T01:25:36Z2009-11-27T01:32:29Z
<p>How do I declare global variables in Visual C#?</p>
http://stackoverflow.com/questions/1804606/static-initialization-and-destruction-of-a-static-librarys-globals-not-happening2Static initialization and destruction of a static library's globals not happening with g++moala2009-11-26T16:23:58Z2009-11-26T16:25:15Z
<p>Hi! 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 <strong>linking with a .o object and linking with a .a static library containing this .o object are apparently not the same</strong>. And I don't understand why...</p>
<p>Let's consider the following source code files:</p>
<pre><code>// main.cpp
#include <iostream>
int main(int argc, char* argv[]) {
std::cout << "main" << std::endl;
}
</code></pre>
<p><hr></p>
<pre><code>// object.hpp
#include <iostream>
struct Object
{
Object() { std::cout << "Object constructor called" << std::endl; }
~Object() { std::cout << "Object destructor called" << std::endl; }
};
</code></pre>
<p><hr></p>
<pre><code>// object.cpp
#include "object.hpp"
static Object gObject;
</code></pre>
<p>Let's compile and <strong>link</strong> and run this code:</p>
<pre><code>g++ -Wall object.cpp main.cpp -o main1
./main1
> Object constructor called
> main
> Object destructor called
</code></pre>
<p>The constructor an the destructor of the global gObject object is called.</p>
<p>Now let's create a <strong>static library</strong> from our code and use (link) it in another program:</p>
<pre><code>g++ -Wall -c object.cpp main.cpp
ar rcs lib.a object.o
g++ -Wall -o main2 main.o lib.a
./main2
> main
</code></pre>
<ul>
<li><strong>gObject's constructor and destructor are not called... why?</strong></li>
<li><strong>How to have them automatically called?</strong></li>
</ul>
<p>Thanks.</p>
http://stackoverflow.com/questions/1782115/iphone-use-nsstring-in-other-method0[iphone] use NSString in other method?!unknown (google)2009-11-23T09:47:47Z2009-11-23T17:08:42Z
<p>It's really embarrassing but i stuck on it for two hours of trial and error.</p>
<p>I declared an NSString in the interface as:</p>
<pre><code>NSString *testString;
</code></pre>
<p>Then i made a property and synthesized it. I allocate it in viewDidLoad with:</p>
<pre><code>testString = [[NSString alloc] initWithFormat:@"thats my value: %i", row];
</code></pre>
<p>If i want to get the value of the string in another method it always return (null).
So the string is empty, but why? how do i make it accessible for every function inside of one class? So i don't want to make a global var just a "global variable inside the class"</p>
<p>It's really confusing because as long as i code i never ran into this problem :(</p>
<p>thanks a lot for helping me!</p>
http://stackoverflow.com/questions/1762630/is-there-a-better-way-of-recreating-serverquerystring0Is there a better way of recreating $_SERVER['QUERY_STRING']Toby2009-11-19T11:21:33Z2009-11-19T13:20:58Z
<p>I want to be able to return all of the parameters that are being passed into a specific page using PHP.</p>
<pre><code>$_SERVER['QUERY_STRING'];
</code></pre>
<p>Seems to perform this task adequately, however I have heard many warn against the use of $_SERVER variables due to their sometimes inconsistent nature. So I was wondering if there are any best practice guidelines on creating a string consisting of everything after the ? of a URL.</p>
http://stackoverflow.com/questions/1753008/making-controls-public-global-in-netbeans-with-java0Making Controls public/Global in Netbeans with Java.Bryan Harrington2009-11-18T01:18:20Z2009-11-18T19:40:14Z
<p>So I have multiple forms for my current project and I have made classes that interact and do some utility work behind these forms.</p>
<p>However I am unable to access controls on other forms. </p>
<p>Say I have a text control on Form A and I want to use a class that receives/manipulates data from a completely different Form B.</p>
<p>My classes and Form B cannot see this control. </p>
<p>I have tried going to properties
code
variable modifiers set to "Public" </p>
<p>Unfortunately this does not seem to do the trick. Any ideas? I appreciate the help!!</p>
http://stackoverflow.com/questions/1557042/how-to-compile-multiple-files-together-with-ml-in-assembly-x862How to compile multiple files together with ml in assembly x86?yuval2009-10-12T21:26:17Z2009-11-14T09:13:19Z
<p>Hi,
I'm working in x86 assembly in 16bits.
I have three files that need to share 'variables between them' - basically, the data segment. When I compile them, as in the following:</p>
<pre><code>ml file1.asm,file2.asm,file3.asm io.lib
</code></pre>
<p>They cannot access each other's variables
How do I share a data segment, and thus variables between the files?
Thank you!</p>
http://stackoverflow.com/questions/1714161/how-to-reference-base-urls-for-images-in-xaml-in-silverlight1How to reference base URLs for images in XAML in Silverlight?bluebit2009-11-11T09:53:34Z2009-11-11T14:53:56Z
<p>I have images scattered throughout my silverlight app, and because of the structure we decided on, all images are brought in from an HTTP URL.</p>
<p>Currently, in XAML an image would be declared as follows:</p>
<pre><code><Image Source="http://www.example.com/directory/example.png" />
</code></pre>
<p>I would like the base URL for all images referenced stored in a global string constant, accessable from all XAML files and code behind files.</p>
<p>i.e. const string BASE_URI = "http://www.example.com/directory";</p>
<p>How can I do this and reference it in XAML, while appending the string to the actual image name? I thought of using a converter, but that requires data binding - and here I am just using the string directly.</p>
http://stackoverflow.com/questions/1709718/am-i-using-a-global-state-here-is-there-any-better-way-to-do-this1Am I using a global state here, is there any better way to do this?Arvind2009-11-10T17:29:16Z2009-11-10T22:56:08Z
<p>I am modifying some legacy code. I have an Object which has a method, lets say doSomething(). This method throws an exception when a particular assertion fails. But due to new requirement, on certain scenarios it is okay to not throw the exception and proceed with the method. </p>
<p>Now I am not calling this method directly from the place where I need to ignore the exception. This doSomething() is like an audit method which is called internally from many other methods, lets say method1(), method2(), etc.</p>
<p>In the place where I need to ignore the exception, I am calling method1(), now I do not want method1() to throw the exception. So I modified method1() to take a default argument method1(ignoreException = false) and called method1(true).</p>
<p>I also modified doSomething() to take the extra argument and method1 just passes the ignoreException back to doSomething(ignoreException).</p>
<p>Potentially, I need to change all the methods, method2, method3 etc as well to take this extra argument.</p>
<p>On seeing this code, someone suggested that instead of passing this flag around, I can have it as a member variable of the class and then call the setter before calling method1(). Lets say my object is obj, then I should do
obj.setIgnoreXXXException(true);
obj.method1();
obj.setIgnoreXXXException(false);</p>
<p>This seems to me like maintaining some global state and doesnt seem right. But the other way of passing around arguments also seem to be clumsy and I have to change a lot of places (this class has subclasses and some methods are virtual so I need to modify everywhere)</p>
<p>Is there a better way of doing this. Since it is legacy and there are no unit tests, I do not want to modify a lot of existing code.</p>
http://stackoverflow.com/questions/1186343/how-a-conflict-is-resolved-in-dynamic-linking0How a conflict is resolved in dynamic linkingsuperhuman2009-07-27T03:54:49Z2009-11-05T20:00:02Z
<p>XYZ.dll defines a global variable int x.
ABC.c also defines the same global variable int x.
How can one link XYZ.dll to ABC.exe? How is this conflict in global namespace resolved?</p>
http://stackoverflow.com/questions/1681745/share-global-logger-among-module-classes0Share global logger among module/classescpjolicoeur2009-11-05T16:23:36Z2009-11-05T19:42:58Z
<p>What is the best (proper) way to share a logger instance amongst many ruby classes?</p>
<p>Right now I just created the logger as a global $logger = Logger.new variable, but I have a feeling that there is a better way to do this without using a global var.</p>
<p>If I have the following:</p>
<pre><code>module Foo
class A
class B
class C
...
class Z
end
</code></pre>
<p>what is the best way to share a logger instances among all the classes? Do I declare/create the logger in the Foo module somehow or is just using the global $logger fine?</p>
http://stackoverflow.com/questions/1645808/global-variables-v-settings-in-c4Global variables v Settings in C#Andy2009-10-29T18:52:31Z2009-10-29T19:17:42Z
<p>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 example, I have seen comments along the lines of: "If you are using a global, you are not doing it right." Or words to that effect.)</p>
<p>But, if you use the Settings mechanism provided by Visual Studio, e.g. "Settings.Default.MySetting" etc, this is available globally throughout an app, so how does this differ from using a public static class?</p>
<p>Also, the same results can be achieved by using a singleton object, but this also provokes various opinions, to say the least.</p>
<p>Global variables are just SO useful, (VB Module, anyone?), but I'm trying to teach myself how to do this OO malarky properly, so, if global variables smell bad from an OO point of view, what is an alternative?</p>
<p>I'm particularly interested on people's opinions of the use of the 'Settings' functionality. Is this considered good OO design?</p>
<p>Thank you for any comments.</p>
http://stackoverflow.com/questions/1639468/logging-events-in-python-how-to-log-events-inside-classes0Logging events in Python; How to log events inside classes?George2009-10-28T19:15:41Z2009-10-29T10:42:27Z
<p>Hello guys.</p>
<p>I built (just for fun) 3 classes to help me log some events in my work.</p>
<p>here are them:</p>
<pre><code>class logMessage:
def __init__(self,objectName,message,messageType):
self.objectName = objectName
self.message = message
self.messageType = messageType
self.dateTime = datetime.datetime.now()
def __str__(self):
return str(self.dateTime) + "\nObjeto de valor " + str(self.objectName) + " gerou uma mensagem do tipo: " + self.messageType + "\n" + self.message + "\n"
class logHandler():
def __init__(self):
self.messages = []
def __getitem__(self,index):
return self.messages[index]
def __len__(self):
return len(self.messages)
def __str__(self):
colecaoString = ""
for x in self.messages:
colecaoString += str(x) + "\n"
return colecaoString
def dumpItem(self,index):
temp = self.messages[index]
del self.messages[index]
return str(temp)
def append(self,log):
if isinstance(log,logMessage.logMessage):
self.messages.append(log)
else:
self.newLogMessage(log, "Wrong object type. Not a log message. Impossible to log.","Error")
def newLogMessage(self,objectInstance,message,messageType):
newMessage = logMessage.logMessage(objectInstance,message,messageType)
self.append(newMessage)
</code></pre>
<p>Here is my question:</p>
<p>Imagine i have other classes, such as Employee, and i want to log an event that happened INSIDE that class.</p>
<p>How can i do that without always passing a logHandler instance to every other class i want to log? My idea would be to pass a logHandler to every <strong>init</strong> function, and then use it inside it.</p>
<p>How can that be done, without doing what i specified?</p>
<p>How would it work with global logHandler? Is there a way to discover in runtime if there is a logHandler instance in the program, and use it to create the messages?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/265708/do-i-need-a-semaphore-when-reading-from-a-global-structure6Do I need a semaphore when reading from a global structure?JXG2008-11-05T16:27:58Z2009-10-27T10:59:49Z
<p>A fairly basic question, but I don't see it asked anywhere.</p>
<p>Let's say we have a global struct (in C) like so:</p>
<pre><code>struct foo {
int written_frequently1;
int read_only;
int written_frequently2;
};
</code></pre>
<p>It seems clear to me that if we have lots of threads reading and writing, we need a semaphore (or other lock) on the <code>written_frequently</code> members, even for reading, since we can't be 100% sure that assignments to this struct will be atomic.</p>
<p>If we want lots of threads to read the <code>read_only</code> member, and none to write, to we need a semaphore on the struct access just for reading?</p>
<p>(I'm inclined to say no, because the fact that the locations immediately before and after are constantly changed shouldn't affect the <code>read_only</code> member, and multiple threads reading the value shouldn't interfere with each other. But I'm not sure.)</p>
<p><hr /></p>
<p>[Edit: I realize now I should have asked this question much better, in order to clarify <em>very specifically</em> what I meant. Naturally, I didn't really grok all of the issues involved when I first asked the question. Of course, if I comprehensively edit the question now, I will ruin all of these great answers. What I meant is more like:</p>
<pre><code>struct bar {
char written_frequently1[LONGISH_LEN];
char read_only[LONGISH_LEN];
char written_frequently2[LONGISH_LEN];
};
</code></pre>
<p>The major issue I asked about is, since this data is part of a struct, is it at all influenced by the other struct members, and might it influence them in return?</p>
<p>The fact that the members were ints, and therefore writes are likely atomic, is really just a red herring in this case.]</p>
http://stackoverflow.com/questions/1627866/instantiating-at-global-level-c0Instantiating at global level (C++)Scott2009-10-26T23:13:07Z2009-10-26T23:40:10Z
<p>Hi, I get the following error with the code below.</p>
<pre><code>expected constructor, destructor, or type conversion before '=' token
</code></pre>
<p>--</p>
<pre><code>#include <string>
#include <map>
class Foo {
};
std::map<std::string, Foo> map;
map["bar"] = Foo();
int main()
{
return 0;
}
</code></pre>
http://stackoverflow.com/questions/1613190/codeigniter-global-variable-for-beta-project-path-and-access-from-everywhere0codeigniter, global variable for beta project path, and access from everywhere.artmania2009-10-23T12:43:50Z2009-10-23T13:09:16Z
<p>Hi friends,</p>
<p>I use CodeIgniter, I'm happy with that, but I have a question.</p>
<p>I build my projects under /www/projectname/beta/... directory, so at my code, at many parts like including some images or css files or etc. I have to make ... src="/projectname/beta/... so when I complete the website, I need to edit so many pages to clear these /projectname/beta/ path and make it / for main root. or when I start new project with same base, first of all I need to edit these paths at all files. </p>
<p>now, how can I define a variable like </p>
<blockquote>
<p>$projectbetapath =
"/projectname/beta/";</p>
</blockquote>
<p>and have access from everywhere, like global. where can I add such line, and how can I access this var from everywhere?</p>
<p>Thanks!! appreciate!</p>
http://stackoverflow.com/questions/909808/how-can-i-make-a-variable-static-or-global-in-classic-asp0How can I make a variable static (or "global") in Classic ASP?joshcomley2009-05-26T09:30:45Z2009-10-23T03:20:20Z
<p>I want to make my variable static or "global" - so the same effect as static in .NET; every session that accesses it gets the same result, and if one session modifies it it affects everyone else too.</p>
<p>How can I achieve this in Classic ASP?</p>
http://stackoverflow.com/questions/1561676/how-where-to-release-global-variables-in-objective-c-iphone0How/where to release global variables in objective c? -iphone sagar2009-10-13T17:17:11Z2009-10-19T03:29:34Z
<p>I have gone through the following question.</p>
<p><a href="http://stackoverflow.com/questions/1528696/objective-c-where-do-you-dealloc-global-static-variables">http://stackoverflow.com/questions/1528696/objective-c-where-do-you-dealloc-global-static-variables</a></p>
<p>But the question is related on static variables. It has something different situation then mine.</p>
<p>I have following code in application.</p>
<pre><code>//.h file
#import "cocos2d.h"
#import "something.h"
#import "myLayer.h"
#import "LayerData.h"
// i have taken this variables as global
// because two different classes are simultaneously accessing it
myLayer *myCurrentLayer;
LayerData *boxLayerData[10][12];
@interface one
// my class definition here
@end
@interface two
// my second class definition here
@end
//------------------------------------------------
@implementation one
// my class constructor here.
-(id)init{
myCurrentLayer=[[myLayer alloc] init];
// boxLayerData is initialized with objects
}
@end
@implementation two
// second class constructor
-(id)init{
[myCurrentLayer setPosition:ccp(10,20)];
[self schedule something for movements];
}
@end
//------------------------------------------------
</code></pre>
<p>Ok. A confusion is "how to dealloc 120 sized "LayerData *boxLayerData[10][12];" array ?"</p>
<p>Plz. Give some suggestion.</p>
<p>Thanks in advance.</p>
<p>Sagar.</p>
http://stackoverflow.com/questions/1567578/global-variables-in-a-wordpress-plugin0Global Variables in a WordPress PluginMarshmellow13282009-10-14T16:49:59Z2009-10-15T14:31:25Z
<p>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 rather than putting the literal values throughout the various functions. However, my install function does not pick up these global variables. Here is my code so far:</p>
<pre><code>$version = '1.0a';
register_activation_hook( __FILE__, 'install' );
function install() {
global $version;
add_option( 'test_version', $version );
}
</code></pre>
<p>Obviously this is pretty straight forward on my end. Any ideas what is going wrong here??</p>
http://stackoverflow.com/questions/1198763/what-are-the-different-ways-of-handling-enumerations-in-sql-server2What are the different ways of handling 'Enumerations' in SQL server?tpower2009-07-29T08:26:40Z2009-10-13T21:24:12Z
<p>We currently define a list of constants (mostly these correspond to enumerations we have defined in the business layer) at the top of a stored procedure like so:</p>
<pre><code>DECLARE @COLOR_RED INT = 1
DECLARE @COLOR_GREEN INT = 2
DECLARE @COLOR_BLUE INT = 3
</code></pre>
<p>But these often get repeated for many stored procedures so there is a lot of duplication.</p>
<p>Another technique I use if the procedure needs just one or two constants is to pass them in as parameters to the stored procedure. (using the same convention of upper case for constant values). This way I'm sure the values in the business layer and data layer are consistent. This method is not nice for lots of values.</p>
<p>What are my other options?</p>
<p>I'm using SQL Server 2008, and C# if it makes any difference.</p>
<p><strong>Update</strong> Because I'm using .Net is there any way that user defined (CLR) types can help?</p>
http://stackoverflow.com/questions/1557787/are-global-variables-in-php-considered-bad-practice4Are global variables in PHP considered bad practice?KRTac2009-10-13T01:19:29Z2009-10-13T03:34:20Z
<pre><code>function foo () {
global $var;
// rest of code
}
</code></pre>
<p>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 to access this variable in a function, I do <code>global $var;</code>.</p>
<p>Is this bad practice?</p>
http://stackoverflow.com/questions/1540539/how-do-you-localize-a-number-of-legacy-globals-without-eval4How do you localize a number of legacy globals without eval?Axeman2009-10-08T21:16:15Z2009-10-08T21:41:02Z
<p>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. </p>
<p>See, if I could use <code>eval</code>, I would just do this: </p>
<pre><code>eval join( "\n"
, map {
my $v = $valcashe{$_};
sprintf( '$Text::Wrap::%s = %s', $_
, ( looks_like_number( $v ) ? $v : "'$v'" )
)
}
);
Text::Wrap::wrap( '', '', $text );
</code></pre>
<p>I even tried being tricky, but it seems that <code>local</code> localizes the symbol to the <em>virtual</em> block, not the physical block. So this doesn't work:</p>
<pre><code>ATTR_NAME: while ( @attr_names ) {
no strict 'refs';
my $attr_name = shift;
my $attr_name = shift @attr_names;
my $attr_value = $wrapped_attributes{$attr_name};
my $symb_path = "Text\::Wrap\::$attr_name";
local ${$symb_path} = $attr_value;
next ATTR_NAME if @attr_names;
Text::Wrap::wrap( '', '', $text );
}
</code></pre>
<p>Same <em>physical block</em>, and I tested the package variables before and after being set, and they even showed the proper value on <em>their</em> time through the loop. But testing showed that only the <em>last</em> variable passed through retained its value for the call to <code>wrap</code>. So values only stayed localized <em>until</em> the end of the loop. </p>
<p>I think the solution is neat--even if arcane perl magick. But the end result is good because it means I can wrap legacy code that relies on package-scoped variables and be assured that the values set will be as short-lived as possible. </p>
http://stackoverflow.com/questions/1515173/global-variable-approach-in-c-windows-forms-app-is-public-static-class-globald0global variable approach in C# Windows Forms app? (is public static class GlobalData the best)Greg2009-10-03T23:43:11Z2009-10-04T15:10:36Z
<p>Hi,</p>
<p>I want to have some custom configuration (read in from file) available throughout my C# windows forms application.</p>
<p>Is the concept of say:</p>
<ol>
<li>creating a static class, e.g. "public static class GlobalData"</li>
<li>loading from from the "Load" action of the main form event</li>
</ol>
<p>How does this sound? Is this the best practice way to do it?</p>
http://stackoverflow.com/questions/1496176/php-globals-variables0php $GLOBALS variablesalexus2009-09-30T04:59:40Z2009-10-02T04:03:11Z
<p>I'm writing a bit of the code and I have parent php script that does include() and includes second script, here is snippet from my second code:</p>
<p><code>
echo ($GLOBALS['key($_REQUEST)']);
</code></p>
<p>I'm <em>trying</em> to grab a key($_REQUEST) from the parent and use it in child, but that doesn't work..</p>
<p>this is when I run script using command line:</p>
<pre>
mbp:digaweb alexus$ php findItemsByKeywords.php test
PHP Notice: Undefined index: key($_REQUEST) in /Users/alexus/workspace/digaweb/findItemsByKeywords.php on line 3
PHP Stack trace:
PHP 1. {main}() /Users/alexus/workspace/digaweb/findItemsByKeywords.php:0
mbp:digaweb alexus$
</pre>
<p>i heard that globals isn't recommended way also, but i don't know maybe it's ok...</p>
http://stackoverflow.com/questions/68156/doing-away-with-globals3Doing away with Globals?Allain Lalonde2008-09-16T00:13:58Z2009-10-01T19:51:22Z
<p>I have a set of tree objects with a depth somewhere in the 20s. Each of the nodes in this tree needs access to its tree's root.</p>
<p>A couple of solutions:</p>
<ol>
<li>Each node can store a reference to the root directly (wastes memory)</li>
<li>I can compute the root at runtime by "going up" (wastes cycles)</li>
<li><s>I can use static fields (but this amounts to globals)</s></li>
</ol>
<p>Can someone provide a design that doesn't use a global (in any variation) but is more efficient that #1 or #2 in both memory or cycles respectively?</p>
<p><strong>Edit:</strong> Since I have a Set of Trees, I can't simply store it in a static since it'd be hard to differentiate between trees. (thanks maccullt)</p>
http://stackoverflow.com/questions/1471764/global-variable-in-qt-how-to3Global variable in Qt, how to?Martin2009-09-24T13:42:08Z2009-09-24T21:13:32Z
<p>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..)</p>
<p>I'm use to iPhone development and there we have the appDelegate that you can use all over the application to reach objects you've declared in applicationDidFinishLaunching method. How can I do the same in Qt?</p>
http://stackoverflow.com/questions/1463707/c-singleton-vs-global-static-object7C++ singleton vs. global static objectTom2009-09-23T02:42:56Z2009-09-24T06:59:52Z
<p>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 won't...but then I wasn't sure..because this in C++.. (I was coming from C#)</p>
<p>What are the advantages one over the other? (in C++)</p>
http://stackoverflow.com/questions/1443397/php-best-practices-repass-variables-from-config-file-when-calling-functions-or-u7PHP best practices: repass variables from config file when calling functions or use global?Andrew Swift2009-09-18T09:16:20Z2009-09-18T10:40:14Z
<p>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.</p>
<p>Let's say that I use one of these site-dependant variables in a function, like <strong>$backup_path</strong>.</p>
<p>This variable was initially <strong>declared in config.php</strong>, and does not appear in the main program file.</p>
<p>I need to access this variable in function <strong>makebackup($table_name);</strong> (also in a separate functions.php file).</p>
<p>Is it better to say</p>
<pre>
makebackup('my_table');
</pre>
<p>and then use "global $backup_path" <strong>inside</strong> the function, or is it better to call the function using</p>
<pre>
makebackup('my_table',$backup_path);
</pre>
<p>The argument for the first is that it keeps the <strong>main program flow simple and easy to understand</strong>, without clutter.</p>
<p>The argument for the second is that it might <strong>not be obvious that the variable $backup_path exists</strong> after some time has passed, and debugging or reworking could be difficult.</p>
<p>Is one or the other of these techniques "standard" among professional programmers? Or should I be using <strong>$_SESSION</strong> to declare these global variables?</p>
http://stackoverflow.com/questions/1435959/global-variables-in-php1Global variables in PHP?Jeremy Rudd2009-09-16T23:02:26Z2009-09-16T23:58:55Z
<p>Does PHP have global variables that can be modified by one running script and read by another?</p>
http://stackoverflow.com/questions/1403410/c-how-to-solve-the-problem-of-global-access1[C++] How to solve the problem of global access?harshath.jr2009-09-10T04:45:07Z2009-09-11T02:59:52Z
<p>Hi, </p>
<p>I'm building an app, and I need the wisdom of the SO community on a design issue.</p>
<p>In my application, there needs to be EXACTLY one instance of the class <code>UiConnectionList</code>, <code>UiReader</code> and <code>UiNotifier</code>.</p>
<p>Now, I have figured two ways to do this:</p>
<p><strong>Method 1:</strong>
Each file has a global instance of that class in the header file itself.</p>
<p><strong>Method 2:</strong> there is a separate globals.h file that contains single global instances of each class.
<br/></p>
<h2>Example code:</h2>
<p><strong>Method 1</strong></p>
<p>file: <code>uiconnectionlist.h</code></p>
<pre><code>#ifndef UICONNECTIONLIST_H
#define UICONNECTIONLIST_H
#include <QObject>
#include <QList>
class UiConnection;
class UiConnectionList : public QObject
{
Q_OBJECT
public:
UiConnectionList();
void addConnection(UiConnection* conn);
void removeConnection(UiConnection* conn);
private:
QList<UiConnection*> connList;
};
namespace Globals {
UiConnectionList connectionList;
}
#endif // UICONNECTIONLIST_H
</code></pre>
<p>file: <code>uinotifier.h</code></p>
<pre><code>#ifndef UINOTIFIER_H
#define UINOTIFIER_H
class UiNotifier
{
public:
UiNotifier();
};
namespace Globals {
UiNotifier uiNotifier;
}
#endif // UINOTIFIER_H
</code></pre>
<p><strong>Method 2:</strong></p>
<p>file: <code>uiconnectionlist.h</code></p>
<pre><code>#ifndef UICONNECTIONLIST_H
#define UICONNECTIONLIST_H
#include <QObject>
#include <QList>
class UiConnection;
class UiConnectionList : public QObject
{
Q_OBJECT
public:
UiConnectionList();
void addConnection(UiConnection* conn);
void removeConnection(UiConnection* conn);
private:
QList<UiConnection*> connList;
};
#endif // UICONNECTIONLIST_H
</code></pre>
<p>file: <code>uinotifier.h</code></p>
<pre><code>#ifndef UINOTIFIER_H
#define UINOTIFIER_H
class UiNotifier
{
public:
UiNotifier();
};
#endif // UINOTIFIER_H
</code></pre>
<p>file: <code>globals.h</code></p>
<pre><code>#ifndef GLOBALS_H
#define GLOBALS_H
#include "uiconnectionlist.h"
#include "uinotifier.h"
namespace Globals {
UiConnectionList connectionList;
UiNotifier uiNotifier;
}
#endif // GLOBALS_H
</code></pre>
<h2>My Question</h2>
<p>What is the better/right way to do this?</p>
<p>PS: I don't think that singleton is the right answer here, is it?</p>
<p>Thanks</p>
<p><hr /></p>
<p>Okay, so two answers have told me to make instances of <code>UiConnectionList</code> and <code>UiNotifier</code>, optionally wrap it in a <code>UiContext</code> and pass it around wherever required.</p>
<p>Could someone enumerate reasons (with examples) why passing around the context is better than having globally accessible variables.</p>
<p>This will help me judge what method is better (or better suited for my app).</p>
<p>Thanks</p>