Tagged Questions
-1
votes
2answers
60 views
Extending from multiple classes in java
i know java doesn't support multiple inheritance. I have 3 concrete base classes say A,B and C. I want to reuse all the utility methods in A,B & C in a single class D.I can not use composition as ...
4
votes
2answers
143 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, ...
1
vote
3answers
144 views
Composition pattern
How should one approach composition instead of inheritance? Consider the following class:
class GameObject {...};
class Sprite {
public:
void changeImage(...);
};
class VisibleGameObject: ...
28
votes
4answers
567 views
C# - Object Composition - Removing Boilerplate Code
Context / Question
I've worked on numerous .NET projects that have been required to persist data and have usually ended up using a Repository pattern. Does anyone know of a good strategy for ...
2
votes
1answer
113 views
Abstract the composition root in a reusable library
In my first question
Locate the correct composition root for a .NET library
helped clarifying about Dependency Injection. The exhaustive answer of Steven states (in few words if it possible) that a ...
0
votes
2answers
82 views
Is this the correct way to implement composition in C++?
A chest is composed of treasure.
I've implemented it the following way:
treasure.hpp
#pragma once
class Treasure{
public:
protected:
private:
//data members
int gold;
};
...
12
votes
5answers
230 views
Composition vs Inheritance in MVP
I'm using MVP pattern to develop a large scale application. While working in the development I have come up with the question whether if composition or inheritance should be used. For example: Let's ...
0
votes
1answer
87 views
Decorator UML explain the composition
I have already looked at this question enter link description here
however i cant seem to find the answer to WHY there is a composition between the two objects
The link to the uml is here:
enter ...
1
vote
0answers
128 views
Composition instead of inheritance in Java [closed]
I have colleagues at work who claim that "Inheritance is an anti-pattern" and want to use composition systematically instead, except in (rare, according to them) cases where inheritance is really the ...
0
votes
1answer
182 views
Composition over inheritance with generics
Lets say I have two interfaces ISomeInterface and ISomeInterface<T> and ISomeInterface<T> inherites from ISomeInterface.
Now if we have to classes Someclass and SomeClass<T> how can ...
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 ...
0
votes
4answers
91 views
Is there any way to design my Java code so these two objects don't reference themselves?
The Setup
My Java code contains two objects: a Group and a Person. Each Group can contain references to multiple Person's, but each Person can only belong to one Group.
The colour of each Person's ...
3
votes
2answers
67 views
How to implement a turnoff switch when using composition (java)?
I have a very simple Player class in java that uses some strategies object all inheriting from the interface PlayerStrategy.
Some implementations of PlayerStrategy are simple but a few others are so ...
0
votes
4answers
97 views
Design decision - inheritance with delegation
I have the following object model:
class CheckoutAd{
int AdId;
int ImpressionCap;
int ClickCap;
int ConversionCap;
// ...
}
class SiteAd{
int AdId;
int ImpressionCap;
int ClickCap;
...
0
votes
2answers
470 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 ...
1
vote
3answers
258 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 ...
1
vote
1answer
116 views
Is composition with Funcs preferable to inheritance to change behaviour in a single function?
I am working on creating an IronPython console similar to the IronPythonConsole project provided with the IronPython source code. However, I want to make the ConsoleHost more extensible than the ...
7
votes
1answer
662 views
Design patterns: Composite vs. Composition
I am finishing a course on design patterns, and while reviewing the notes came across something I missed during the semester: Composite vs. Composition. What I managed to understand is that composite ...
1
vote
1answer
1k views
using mef with asp.net mvc 3
I'm trying to use MEF in my asp.net mvc 3 application, but I could not realise the injection. Here is the code:
I have an interfaces class library which has:
namespace Namespace.Interfaces
{
...
2
votes
5answers
289 views
Base class in C#… that can be inherited from like an interface?
I need to implement a basic behaviour for many classes. To make an example, let's say it is a sort of drawing behaviour: there are many different type of objects that may be drawn, and they all need a ...
3
votes
3answers
193 views
How to add property to existing interface?
I have the following hierarchy of assemblies:
MyRoot
MyRoot.General
MyRoot.General.Model
MyRoot.General.MyApp
Each assembly should reference going from MyApp down to MyRoot. In other words, MyRoot ...
1
vote
1answer
48 views
Software composition using “components” - Clarification needed
I read a nice definition for software composition here. It says
Software composition is the construction of software applications from components that implement abstractions pertaining to a ...
7
votes
4answers
174 views
Composition, how do you know when to stop?
There's the old but wise saying "Value composition over inheritance". I've been trying to apply this, along with other OOPs and Design-Patterns, for the last couple of projects that I've been involved ...
2
votes
1answer
185 views
Utility vs. Composition vs. Inheritance for JAX-RS Response
I am thinking about writing a utility class that creates and returns a JAX-RS Response. The goal is to simplify and standardize the generation of Response's. Here's the idea:
public Object success ...
6
votes
3answers
721 views
Class vs Module in designing Ruby API?
When I read more about Ruby metaprogramming, most of the time we found at least two solutions to solve a problem. Please look at two examples below:
class Base
def self.has_many(*args)
# ...
...
5
votes
5answers
1k views
What is composition as it relates to object oriented design?
I hear (and read on this site) a lot about "favour composition over inheritance".
But what is Compositon? I understand inheritance from the point of Person : Mammal : Animal, but I can't really see ...
2
votes
1answer
21 views
How do you improve this design with chained AddX type of methods to construct object hierarchy from database?
Currently, I am dealing with multiple layers of composition in my application. We read data from database for ProductLocations and put them into a Solver object. In another query we read multiple ...
0
votes
1answer
152 views
How can I achieve this kind of relationship (inheritance, composition, something else)?
I would like to set up a foundation of classes for an application, two of which are person and student. A person may or may not be a student and a student is always a person. The fact that a student ...
0
votes
2answers
137 views
Circular compositional pattern with RSS Feed and FeedItem classes
I'm designing a small system to parse RSS feeds, and I have two classes: Feed and FeedItem.
public class Feed
{
public string Title{ get; set; }
public string Link{ get; set; }
public ...
0
votes
4answers
2k views
Decorator Pattern Using Composition Instead of Inheritance
My previous understanding of the decorator pattern was that you inherit Window with WindowDecorator, then in the overridden methods, do some additional work before calling the Window's implementation ...