Tagged Questions
0
votes
1answer
392 views
How to set my ClassLoader as the JVM's ClassLoader for loading ALL classes (jar classes included)?
I am writing a game engine in which I need to analyze every single class that is mentioned in my program. As this is a game engine, it is to be attached to a client's project as a JAR file. From ...
1
vote
4answers
235 views
PHP use __get to call a method?
I've got some PHP cruft that I would like to delegate methods. Sort of a poor-man's mixin.
Basically I would like the following:
<?php
class Apprentice
{
public function magic() {
...
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.
1
vote
5answers
88 views
Is the way of grouping classes different with PHP? [closed]
As the title states; the way one groups classes in PHP compared to for example Java, is it supposed to be different? I am currently reading O'Reilly's book OOA&D and in the chapters I've learned ...
3
votes
3answers
103 views
Is it bad programming design to delegate information from Class A to Class B to Class C instead of directly from Class A to C?
I'm planning on making an app that contains a piano keyboard. There will be a custom class that represents an individual key, and the keys will be the subviews of another custom class, the piano ...
-1
votes
2answers
218 views
Message flow in Objective-C
Does anyone have a good reference which really outlines how this entire 'message flow' between classes, subclasses, etc.... works in Objective-C? It seems very central to the architecture of the ...