2
votes
5answers
145 views
How to avoid multiple instances of a program?
I need to find a right way to prevent two running instances of my (Python) program.
I am currently using the following method.
On Windows,
os.popen('wmic process get caption,processid | findstr …
1
vote
3answers
44 views
How to get instance ID with PHP
I'm looking for a way to get the instance ID of a given object / resource with PHP, the same way var_dump() does:
var_dump(curl_init()); // resource #1 of type curl
var_dump(curl_init()); // resource …
0
votes
4answers
106 views
c++: Object’s variable cannot be evaluated, but variable from reference to the same object can???
Ok, this is veeery weird... I think. What I mean with the title is:
inside the act() function from an actionHandler object I have:
state->getHumanPieces();
Which gives me an address violation …
4
votes
6answers
258 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 …
1
vote
6answers
109 views
How to dynamically create a union instance in c++?
I need to have several instances of a union as class variables, so how can I create a union instance in the heap? thank you
0
votes
2answers
33 views
How do I delete an instance of an intermediate model in a Django Many-to-many relationship?
According to an example at
http://docs.djangoproject.com/en/dev/topics/db/models/#extra-fields-on-many-to-many-relationships
I have three models:
class User(models.Model):
name = …
2
votes
3answers
43 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 = …
1
vote
5answers
136 views
Invoking an instance method without invoking constructor
Let's say I have the following class which I am not allowed to change:
public class C
{
public C() { CreateSideEffects(); }
public void M() { DoSomethingUseful(); }
}
and I have to call M …
1
vote
6answers
153 views
Check if a specific exe file is running
I want to know how i can check a program in a specific location if it is running. For example there are two locations for test.exe in c:\loc1\test.exe and c:\loc2\test.exe. I only wanted to know if …
1
vote
6answers
203 views
How to get instance from string in C#?
Is it possible to get the property of a class from string and then set a value?
Example:
string s = "label1.text";
string value = "new value";
label1.text = value; <--and some code that makes …
1
vote
3answers
36 views
Method accessing protected property of another object of the same class
Should an object's method be able to access a protected property of another object of the same class?
I'm coding in PHP, and I just discovered that an object's protected property is allowed to be …
1
vote
2answers
62 views
What are SingletonMethods and InstanceMethods in Ruby
I see a lot of stuff
include ActiveRecord::XXXX::InstanceMethods
extend ActiveRecord::XXXX::SingletonMethods
I am unaware of the property or there working, just wanted a easy to understand answer.
…
5
votes
8answers
292 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?
1
vote
2answers
172 views
Decorating Instance Methods in Python
Here's the gist of what I'm trying to do. I have a list of objects, and I know they have an instance method that looks like:
def render(self, name, value, attrs)
# Renders a widget...
I want to …
0
votes
4answers
98 views
Getting an instance name inside class __init__()
While building a new class object in python, I want to be able to create a default value based on the instance name of the class without passing in an extra argument. How can I accomplish this? Here's …
