0
votes
5answers
63 views
Global variables in Visual C#
How do I declare global variables in Visual C#?
2
votes
1answer
57 views
Static initialization and destruction of a static library’s globals not happening with g++
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 linking with a .o …
2
votes
3answers
144 views
Is there a better way to create this game loop? (C++/Windows)
I'm working on a Windows game, and I have this:
bool game_cont;
LRESULT WINAPI WinProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam)
{
switch(msg)
{
case WM_QUIT …
0
votes
4answers
32 views
[iphone] use NSString in other method?!
It's really embarrassing but i stuck on it for two hours of trial and error.
I declared an NSString in the interface as:
NSString *testString;
Then i made a property and synthe …
0
votes
3answers
22 views
Is there a better way of recreating $_SERVER[’QUERY_STRING’]
I want to be able to return all of the parameters that are being passed into a specific page using PHP.
$_SERVER['QUERY_STRING'];
Seems to perform this task adequately, however …
0
votes
1answer
11 views
Making Controls public/Global in Netbeans with Java.
So I have multiple forms for my current project and I have made classes that interact and do some utility work behind these forms.
However I am unable to access controls on other …
2
votes
2answers
62 views
How to compile multiple files together with ml in assembly x86?
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:
…
1
vote
1answer
19 views
How to reference base URLs for images in XAML in Silverlight?
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.
Currently, in XAML an image would be …
1
vote
4answers
124 views
Am I using a global state here, is there any better way to do this?
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 requ …
0
votes
2answers
40 views
How a conflict is resolved in dynamic linking
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?
0
votes
2answers
40 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
170 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
47 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):
…
6
votes
10answers
503 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 writt …
0
votes
3answers
151 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 …
