-1
votes
1answer
46 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
63 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 …
1
vote
2answers
102 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 …
0
votes
1answer
28 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
19 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 …
0
votes
0answers
35 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 : …
5
votes
8answers
274 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
39 views
Find where a class was instantiated
I have trying to solve the error : Fatal error: Cannot redeclare class
I have been looking everywhere and I can't find where the class was instantiated.
Is there anyway I can pri …
1
vote
3answers
160 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 t …
1
vote
2answers
105 views
How to “invoke” a class instance in PHP?
Hi,
is there any possibility to "invoke" a class instance by a string representation?
In this case i would expect code to look like this:
class MyClass {
public $attribute;
}
…
3
votes
4answers
92 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 …
1
vote
1answer
40 views
Access Running Instance Of Application
Hi,
I found there are lots of posts showing how to detect if the application instance already running. But I cant find any one that shows how to access or use the same running app …
1
vote
3answers
62 views
Browsing/editing RDF/OWL Instances
I'm looking for a graphical browser for examining large networks of OWL/RDF instances. Protege's instance browser isn't really useful and if COE supports instance browsing, I've no …
1
vote
4answers
165 views
Reference Static Methods/Variables in Java from an Instance
Can anyone explain to me why java allows you to access static methods and members from an instance? A bad example, if I have an object called RedShape and it has a static method ca …
2
votes
7answers
341 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? …
