4
votes
6answers
235 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:
…
1
vote
6answers
94 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
38 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.
strin …
1
vote
3answers
29 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 …
1
vote
5answers
122 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(); }
}
an …
1
vote
6answers
125 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 …
1
vote
6answers
172 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 som …
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 t …
0
votes
1answer
73 views
NHibernate ManyToMany relationship - using AuditInterceptor - object references an unsaved transient instance - save the transient instance before flushing
The domain model the DomainObject's audit fields are populated using an AuditInterceptor.
DomainObject
Id
EstablishDate
EstablishId
UpdateDate
UpdateId
Message : …
1
vote
1answer
45 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 …
-1
votes
1answer
52 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 …
0
votes
4answers
83 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 acc …
0
votes
1answer
40 views
ASP.NET: strategies to manage a single browser instance…(no new tabs/windows)
All the browsing to this particular website should happen within the instance it was logged-in from...it should not allow side-by-side browsing if opened in a new tab or a new wind …
0
votes
2answers
24 views
Can I set a property on an object that is only declared on the instance type, when I don’t know the type?
Let me explain. I have a List into which I am adding various ASP.NET controls.
I then wish to loop through the list and set a CssClass, however not every Control supports the prope …
1
vote
2answers
148 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 wi …
