10
votes
10answers
2k views
How do i tell if one instance of my program is running?
How do i tell if one instance of my program is running?
i thought i could do this with a data file but it would just be messy :(
i want to do this as i only want 1 instance to ever be open at one …
8
votes
11answers
2k views
Singleton in Java - I didn’t do it
I'm trying to track down an issue in our system and the following code worries me. The following occurs in our doPost() method in the primary servlet (names have been changed to protect the guilty):
…
7
votes
7answers
2k views
Python object deleting itself
Why won't this work? I'm trying to make an instance of a class delete itself.
>>> class A():
def kill(self):
del self
>>> a = A()
>>> a.kill()
>>> a
…
5
votes
8answers
287 views
create a object : A.new or new A?
Hi,
Just out of curiosity: Why C++ choose a = new A instead of a = A.new as the way to instantiate an object? Doesn't latter seems more like more object-oriented?
5
votes
6answers
287 views
Limit instances creation of a class??
I am using c#. I have created a class which can be included in any c#.net project (desktop or web based), but I want that only 10 objects will be created in that application of my class. If object …
5
votes
17answers
2k views
Do you prefix your instance variable with ‘this’ in java ?
And... we have another QAW (Quality Assurance War) on our hand.
After reading the more generic "What kind of prefix do you use for member variables?" question, I tried to argue with my QA department …
4
votes
6answers
249 views
Can a C++ Class Constructor Know Its Instance Name?
Is it possible to know the object instance name / variable name from within a class method? For example:
#include <iostream>
using namespace std;
class Foo {
public:
void …
3
votes
4answers
108 views
Constant instance variables?
I use 'property' to ensure that changes to an objects instance variables are wrapped by methods where I need to.
What about when an instance has an variable that logically should not be changed? Eg, …
3
votes
4answers
130 views
A question regarding string instance uniqueness in python
I was trying to figure out which integers python only instantiates once (-6 to 256 it seems), and in the process stumbled on some string behaviour I can't see the pattern in. Sometimes, equal strings …
3
votes
5answers
209 views
Inheriting from instance in Python
Hello,
In Python, I would like to construct an instance of the Child's class directly from an instance of the Parent class. For example:
A = Parent(x, y, z)
B = Child(A)
This is a hack that I …
3
votes
2answers
181 views
Reflecting on property to get attributes. How to do when they are defined elsewhere?
I have a class Bar like this:
class Foo : IFoo {
[Range(0,255)]
public int? FooProp {get; set}
}
class Bar : IFoo
{
private Foo foo = new Foo();
public int? FooProp { get { return …
3
votes
5answers
915 views
C# : how to - single instance application that accepts new parameters ?
I'm creating a (C#) program that downloads binaries using NZB files, there may only be one instance of my application running at any time.
So when a user doubleclicks an .nzb-file and my program is …
2
votes
3answers
42 views
get the control with a certain name provided as a string in c#
Hi there, i have the name of a control in a string and I want to manipulate the control, how do i turn the string into the current form instance of that control in c#?
e.g.
string controlName = …
2
votes
3answers
285 views
Python: Get class name from instance?
Example:
class Class1:
def __init__(self):
self.x = Class2('Woo!')
class Class2:
def __init__(self, word):
print word
meow = Class1()
How do I derive the class name that …
2
votes
7answers
405 views
C# Singleton “GetInstance” Method or “Instance” Property?
From the perspective of an API end-user who needs to "get an the instance" of a Singleton class, do you prefer to "get" an the .Instance property or "call" a .GetInstance() Method?
public class Bar
{
…
