Tagged Questions
0
votes
2answers
49 views
how to understand composition and forwarding methods?
Effective in Java Item 16:
Luckily, there is a way to avoid all of the problems earlier. Instead of extending an existing class,give your new class a private field that reference a existing class.
...
0
votes
2answers
53 views
OOP: Proper way to check other instances of objects' variables
I have a collection of related classes, call them
class Manager {
private:
std::vector<Setting> m_settings;
}
class Setting {
private:
std::vector<Action> ...
1
vote
1answer
44 views
Handling variables in composition relationships
I am currently redesigning a C++ project, and wanted some opinions on how variables should be handled when classes with a "has a" (composition) relationship need to access variables that arguably ...
2
votes
2answers
44 views
Composition vs Aggregation
Let us say I have a car class and paint class(which consists of different colors). Now In terms of Object oriented design what can be the relation between these two classes is it composition or ...
1
vote
1answer
31 views
RTTI using Composition
It is said that programmers should prefer composition over inheritance. I was wondering if RTTI can be achieved as easily using composition?
4
votes
2answers
146 views
Can inheritance be replaced completely by composition?
This question is NOT question like "inheritence vs composition".
I understand completely how inheritance differs from composition, I know the Liskov substitution principle, the diamond problem, ...
0
votes
1answer
71 views
JavaScript and Composition
I am currently trying to understand compositions to be able to implement them into a piece of code I am working on. I don't see the importance/use of compositions atm, but for my purposes it seems ...
1
vote
1answer
52 views
composition-and-forwarding approach for a class with two Lists
I have read Item 16 from Effective Java and
Prefer composition over inheritance? and now try to apply it to the code written 1 year ago, when I have started getting to know Java.
I am trying to ...
0
votes
3answers
219 views
OOP: Object Inheritance and Composition Relationships in Simple Game Design [closed]
I'm currently learning Java for several reasons, but one of the main ones being that it's a very OOP orientated language, and writing code in Java is really helping me understand the core concepts ...
1
vote
1answer
109 views
Regarding favoring composition over inheritance approch, STRATEGY pattern
I was ask an question in an interview that was lets say there's the class A with a method drawShape() and there's an another class B with the method drawSquare(). Now there's a third class C. In my ...
6
votes
1answer
98 views
Should I be using Inheritance or Composition in this case?
I'm writing a simple game and a lot of the game objects share attributes. I have two potential implementations for this.
The first is using inheritance as specified in the following image:
The ...
1
vote
2answers
38 views
When subclassing an object, what is the appropriate method to handle functions that don't make sense on the child?
Before I jump into the meat of the question, let me note that this is a purely theoretical query. I'm not interested in this for practical reasons, I'm interested in the underlying OOP theory on how ...
0
votes
2answers
89 views
Is composition (as opposed to inheritance) not extremely tedious?
Say you have interfaces IBuilding and IDwelling, and class House which implements both. It encapsulates a building and a dwelling:
class House implements IBuilding, IDwelling
{
private IBuilding ...
0
votes
2answers
64 views
Using composition - should an exception be thrown if wrong type
When using composition, if an object is not of the type of the interface should an exception be explicitly thrown.
An example would be:
$myObject = new MyConcreteTypeA();
Now, my interface is ...
2
votes
3answers
94 views
How can the member objects be changed at run time in composition?
From Thinking in C++ Vol. 1 (P-33):
Composition comes with a great deal of flexibility. The member
objects of your new class are usually private, making them
inaccessible to the client ...
1
vote
2answers
88 views
OOP and Design Practices: Accessing functionality of member objects?
I've been working on a small project using C++ (although this question might be considered language-agnostic) and I'm trying to write my program so that it is as efficient and encapsulated as ...
1
vote
0answers
49 views
Extending module functionality in python
I have a series of modules, each of which contains a behavior which I want to mix into a class via composition. Since each of these modules has some common & redundant code, I attempted to extract ...
0
votes
2answers
71 views
Using both Inheritance and Composition in the same class?
I know the rule of using inheritance when there is an is-a relationship, and composition when there's a has-a relationship, but are the two mutually exclusive/replacements for one another or would ...
0
votes
1answer
48 views
EIEIO Composition (exposing a slot of a contained object through own slot)
I have two EIEIO classes:
(defclass i-driver ()
(;; more slots
(exit-conditions
:initarg :exit-conditions
:initform nil
:type list
:documentation
"Conditions to test in the ...
4
votes
1answer
41 views
Is it bad practice to return a Data structure of member functions in composition?
Take for example you have a class A and class B. Class A uses a compositional type relationship that interacts with many of the class B objects. class A stored these class B objects references in an ...
1
vote
2answers
109 views
OOP: Composition and public property?
So lets say I have a class that is composed of other classes.
class HttpRequest
{
public $session = new Session();
// .. the rest of the HttpRequest code
}
Now, I want to have access to Session ...
3
votes
3answers
155 views
Composition vs inheritance. Where did I go wrong?
I need to model organizational hierarchy structure in my entities. An organization can be head-office, regional head, sub region, area office. There are a lot of common functions that the ...
0
votes
1answer
77 views
Design Pattern Help - Composition and Code Re-use
I always seem to fall back on the Factory Pattern/Inheritance for code reuse, and have been reading about composition over inheritance and do see the benefits of the loose coupling. You definitely ...
2
votes
2answers
168 views
Virtual event handlers from several classes: multiple inheritance or composition?
My team has written several C++ classes which implement event handling via pure virtual callbacks - for example, when a message is received from another process, the base class which handles IPC ...
0
votes
1answer
75 views
How can I automatically create a sub class in C#?
I have the following code:
public class Page {
public string FilePath { get; set; }
public int RoleNumber { get; set; }
public class Navigation {
public string Menu { get; set; }
...
1
vote
1answer
72 views
Design advice: calling a method on the container object from the contained object
I have a simple setup with
class Container {
Handler h;
}
All the Container objects have a "warning()" method. I would like
to also have a way to output warnings from within the Handler object, ...
0
votes
2answers
488 views
A tree, where each node could have multiple parents
Here's a theoretical/pedanticle question: There are some good questions here btw. Unfortunately, most the answers I've come across seem to stress some third party solution.
Imagine property where ...
0
votes
1answer
47 views
using this reference?
It possible to get uglier OO behavior than normal OO pattern?
My cclass contain instance of receiver (to invoke command) but my receiver also contain list of command which been enacted on it, ...
1
vote
3answers
259 views
Inheritence vs Composition - An OOP Architectural Consideration
I'm having trouble figuring out a clean way to implement my layering.
Here are the layers I have (lower layers support upper layers, either through inheritence
or composition):
Business Logic Layer ...
0
votes
2answers
144 views
Composition vs reducing coupling?
I am getting a little confused between using objects as attributes within other objects (and invoking methods on the attribute) using composition, versus having a good overall coupling.
Is there a ...
2
votes
2answers
854 views
association, aggregation and composition
I'm dealing with this problem. I'm creating math problems, each one has response. For example.
If my question is about the "result of 5x + 15 = 2?", I'll be waiting just one answer (as integer).
If ...
2
votes
1answer
86 views
OO design in python. Up across and down?
My question is really about how two objects that have both been created by a parent class can talk to each other. The real use case I have is for a PySide GUI application where two widgets that are ...
0
votes
1answer
145 views
I need to understand composition and inheritance better
I have a baseball player super class
I have a left field, center field, right field, 3b, ss, 2b, 1b, catcher, pitcher that inherits from player.
So, let's take the pitchers for example. Would a ...
0
votes
3answers
152 views
How does composite object communicate with parent object?
I am from system programming background in C and Java programming is Greek and Latin for me.
So my problem is:- I have 2 JFrame Objects
I have a parent Object A
which has child Objects B.
Object ...
2
votes
2answers
52 views
Best solution to have class specific attributes
I created an abstract class A that implements methods that are commonly used.
Now I realized that a new class has to use the same methods but with different attribute values.
Below is a quick summary:
...
3
votes
1answer
95 views
Understanding when to use inheritance to allow one class to use instances of another
When creating classes, is there a rule for when to use inheritance and when to import a new class, without inheritance, into another?
Here’s an example:
I make a class called Person, and then create ...
3
votes
4answers
62 views
Leaking attributes of class to it's components
I've got the following classes:
class A {
// Whatever
};
class B {
T attribute;
A a;
};
Now suppose i have the following scenario:
A aX, aY;
B bX, bY;
Now i can sort of ...
0
votes
1answer
129 views
How can I reuse columns and events in Doctrine 2 Entities?
Suppose I'm writing a blog app: My Posts Entity should have a createddate, modifieddate, name, and slug property (the slug would be generated when I call setName() for the Entity). I want to reuse ...
1
vote
2answers
358 views
Python object composition - accessing a method from the class that called it
You'll have to forgive me, I am trying to teach myself OO but I have come across this problem with composition and 'has-a' relationships.
class Main(object):
def A(self):
print 'Hello'
...
0
votes
0answers
26 views
Composition- could someone please clarify? [duplicate]
Possible Duplicate:
Cmposition, I dont quite get this?
I posted this question a few weeks ago:
Cmposition, I dont quite get this?
One of the answers talks about the advantage of ...
3
votes
5answers
178 views
Cmposition, I dont quite get this?
Referring to the below link:
http://www.javaworld.com/javaworld/jw-11-1998/jw-11-techniques.html?page=2
The composition approach to code reuse provides stronger encapsulation
than inheritance, ...
0
votes
4answers
110 views
is this way of inheritance wrong?
I don't know whether I chose a good title or not but I'm developing a simple card-based game and this is my scenario:
I have a Class called Player and I have instantiated few objects ( lets say 4 ) ...
1
vote
2answers
82 views
Simulation for large number of objects associated with other objects (“have a”)
I am trying to really get a good idea how to think in OOP terms, so I have a semi-hypothetical scenario in my mind and I was looking for some thoughts.
If I wanted to design a simulation for ...
3
votes
1answer
140 views
OOP philosophy (an extract on composition and inheritance from Programming in Scala)
In Programming in Scala, page 239, the first paragraph says:
Composition and inheritance are two ways to define a new class in
terms of another existing class. If what you’re after is primarily
...
11
votes
1answer
1k views
Composition, Inheritance, and Aggregation in JavaScript
There is a lot of information about composition vs inheritance online, but I haven't found decent examples with JavaScript. Using the below code to demonstrate inheritance:
function Stock( /* ...
3
votes
1answer
268 views
PHP and multiple inheritance; I know you can't, but then how do I..?
I understand that multiple inheritance1 is simply not supported in PHP, and while many "hacks" or workarounds exist to emulate it, I also understand that an approach such as object composition is ...
0
votes
1answer
97 views
Actionscrpipt 3 OOP
I am developing player which has several my own custom developed buttons which has their own classes. Also the player has its own class which is the main class and instansiate all the buttons I have.
...
0
votes
1answer
149 views
Multiple user types - inheritence or composition?
I have two "types" of Accounts in my site, with VERY different functionality, and a few different fields between them. These two types, however, share the same table of "basic account" fields.
Is it ...
4
votes
2answers
311 views
Why use object inheritance instead of mixins
gist
What are the reasons to favour inheritance over mixins
Given the following psuedo-code example :
class Employee
class FullTimeEmployee inherits Employee
class PartTimeEmployee inherits ...
0
votes
2answers
77 views
What are the options or best practice in how to specialize a class ?
I have an already created Person class with its respective attributes; eventually a person can turn into an Employee.
Using inheritance, Employee can be a subclass of Person. How can you transform ...