0
votes
1answer
6 views
How to use the Facade.Instance method without object construction?
I only recently completed a unit on software patterns and am now attempting to comprehend the PureMVC framework. One thing has got my stumped however, something which is simple to the gurus here.
I'm …
1
vote
3answers
41 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
104 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 …
0
votes
2answers
30 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 = …
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 …
1
vote
6answers
104 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
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 = …
1
vote
3answers
33 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
5answers
129 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
144 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
189 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
2answers
60 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.
…
1
vote
1answer
47 views
Threading / Linq Class list problem
Ok, so ive been writing a very complex multiserver irc bot recently, and ive encountered an issue..
i stipped down the code as much as i could because its very large, the full code is here:
…
-1
votes
1answer
55 views
Same instance referred to by multiple constructors
I have an instance of Class A that I want to refer to in the constructor of multiple instances of B. How can I refer to that particular instance of Class A in each new instance of B?
0
votes
4answers
93 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 …
