Tagged Questions
0
votes
2answers
56 views
How do I reduce delegation boilerplate?
I have a class that implements an interface. There's another class that implements this interface, too, and an instance of this second class backs my class's implementation.
For many of the methods ...
0
votes
1answer
42 views
Eliminate repetitive code for Delegation in Objective C
One of 35 header files in project (Handed over to me by some other developer; All of them contains same delegates declaration)
@interface ActivityDetailsCN : UIViewController <NSXMLParserDelegate, ...
-5
votes
2answers
69 views
Python: Explain result of the programm [closed]
One of my test tasks (to get a junior python position) says that I have to explain the result of the program. It's code is:
class SuperM: pass
SuperM.x = 0
class Super(SuperM):
def method(self):
...
1
vote
2answers
121 views
How can I delegate to the __add__ method of a superclass?
Say I have this class:
class MyString(str):
def someExtraMethod(self):
pass
I'd like to be able to do
a = MyString("Hello ")
b = MyString("World")
(a + b).someExtraMethod()
("a" + ...
2
votes
1answer
202 views
Python: Should I use delegation or inheritance here?
I am pondering if I should use inheritance or delegation to implement a kind of wrapper class. My problem is like this: Say I have a class named Python.
class Python:
def __init__(self):
...
2
votes
2answers
1k views
In OOP, what is forwarding and how is it different from delegation?
Would someone please explain the difference between forwarding and delegation? They seem similar, but I haven't been able to find a good definition of forwarding, so I'm not sure I really understand.
0
votes
1answer
25 views
Avoiding binding objects in OOP
I've read that it's recommended not binding components together since if you remove a part the rest might not function properly. However, I see no alternative to binding objects together when using ...
2
votes
1answer
250 views
What is delegation? When would I want to use it?
In OOP, a term delegation is mentioned. How is this modelled in a class? I searched on yahoo etc but got links to delegates.
11
votes
5answers
4k views
When to use delegation instead of inheritance?
Could someone please explain when would I want to use delegation instead of inheritance?
