Composition is the process of combining, or composing, parts of a program into a larger program.
368
votes
27answers
53k views
Prefer composition over inheritance? [closed]
Why prefer composition over inheritance? What trade-offs are there for each approach? When should you choose inheritance over composition?
36
votes
5answers
9k views
Method name collision in interface implementation - Java
If I have two interfaces , both quite different in their purposes , but with same method signature , how do I make a class implement both without being forced to write a single method that serves for ...
16
votes
7answers
13k views
Difference between Inheritance and Composition
Are Composition and Inheritance the same?
If I want to implement the composition pattern, how can I do that in Java?
5
votes
5answers
4k views
C++ implicit copy constructor for a class that contains other objects
I know that the compiler sometimes provides a default copy constructor if you don't implement yourself. I am confused about what exactly this constructor does. If I have a class that contains other ...
32
votes
11answers
12k views
Object Oriented Best Practices - Inheritance v Composition v Interfaces
I want to ask a question about how you would approach a simple object-oriented design problem. I have a few ideas of my own about what the best way of tackling this scenario, but I would be interested ...
1
vote
1answer
2k views
How to use Facelets composition with files from another context
I have an application that use composition (for page templates). But we think in create a web-application (war) to host all templates shared by all applications in the same host of all applications.
...
15
votes
1answer
1k views
Should I use inheritance or composition?
I would like to keep this one short. I build a HouseA that has two rooms, say BedRoom and StudyRoom, both deriving from a base class called Room.
BedRoom and StudyRoom have a same parent called House. ...
27
votes
14answers
5k views
Why use inheritance at all? [closed]
I know the question has been discussed before, but it seems always under the assumption that inheritance is at least sometimes preferable to composition. I'd like to challenge that assumption in hopes ...
20
votes
4answers
2k views
Haskell: How to compose `not` with a function of arbitrary arity?
When I have some function of type like
f :: (Ord a) => a -> a -> Bool
f a b = a > b
I should like make function which wrap this function with not.
e.g. make function like this
g :: ...
19
votes
4answers
4k views
Delphi support for Aero Glass and the DoubleBuffered property - what is going on and how do we use them?
I am confused by Delphi 2009/2010 support for the Aero Theme Glass features in Windows, and by what, exactly DoubleBuffered means, and what it has to do with Aero glass. I have found that ...
33
votes
7answers
4k views
Haskell composition (.) vs F#'s pipe forward operator (|>)
In F#, use of the the pipe-forward operator (|>) is pretty common. However, in Haskell I've only ever seen function composition (.) being used. I understand that they are related, but is there a ...
13
votes
5answers
896 views
Is there anything composition cannot accomplish that inheritance can?
Composition and inheritance.
I am aware that they are both tools to be chosen when appropriate, and context is very important in choosing between composition and inheritance. However, the discussion ...
4
votes
3answers
1k views
When to use C++ private inheritance over composition?
Can you give me a concrete example when is preferable to use private inheritance over composition? Personally, I will use composition over private inheritance, but there might be the case that using ...
9
votes
2answers
701 views
Liskov Substition and Composition
Let say I have a class like this:
public sealed class Foo
{
public void Bar
{
// Do Bar Stuff
}
}
And I want to extend it to add something beyond what an extension method could ...
19
votes
5answers
6k views
inheritance vs. composition for testability
While designing my objects I find composition to be a better choice from the perspective of testability. The reason being, I can mock parts of the composition structure if I need to, while running ...
12
votes
4answers
2k views
Difference between trait inheritance and self type annotation
In Scala, I've seen the constructs
trait T extends S
and
trait T { this: S =>
used to achieve similar things (namely that the abstract methods in S must be defined before an instance may be ...
3
votes
3answers
2k views
UML association vs. composition and detail level
Actually, make that a couple of amateur UML questions! When creating a UML diagram to model some domain concepts and you come across a domain concept that "holds" some information about another ...
1
vote
2answers
78 views
Adding ActionListener to a Panel - Panel implements ActionListener vs Panel HAS A ActionListener
I made a panel for my program. It consists of RadioButtons only. When a radiobutton is selected, I want to set a boolean in other code. This panel will be used as a component of a bigger panel or ...
4
votes
4answers
753 views
Extending a JFrame
What is are the pros and cons of extending a JFrame rather than create a new Frame?
For example:
public class Test extends JFrame{
setVisible(true);
}
or
public class Test{
JFrame test = new ...
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, ...
2
votes
1answer
307 views
Creating multiple (15+) HTTP Response filters, Inheritance vs. Composition w/ Injection
First a little back story on what I am trying to accomplish.
I am in the process of creating a custom HTTP Module whose purposes is to intercept messages to multiple (15+) different ArcGIS REST web ...
1
vote
1answer
92 views
What is a function composition algorithm that will work for multiple arguments, such as h(x,y) . f(x) . g(x) = h(f(x),g(x))?
For example, suppose we had the functions double(x) = 2 * x, square(x) = x ^ 2 and sum(x,y) = x + y. What is a function compose such as compose(compose(sum, square), double) = x^2 + 2*x? Notice that ...
0
votes
2answers
170 views
How to manage discovery and composition as 2 separate concerns?
I have set up an assembly catalog:
private CompositionContainer GetContainer() {
// initialize directory info
ExtensionDirectory = new DirectoryInfo(settings.ExtensionsPath);
// ...
17
votes
20answers
1k views
How closely related is music composition to coding? [closed]
It seems to me as if there are a higher proportion of musicians in the programming field than in the general public. Maybe it's just an illusion caused by the fact that I'm an amateur guitarist ...
6
votes
10answers
951 views
How do I use composition with inheritance?
I'm going to try to ask my question in the context of a simple example...
Let's say I have an abstract base class Car. Car has-a basic Engine object. I have a method StartEngine() in the abstract ...
4
votes
3answers
1k views
UML Notation - Aggregations/Compositions vs “Vanilla” Associations
I've recently spent a good deal of time performing detailed UML designs of various SW components that I have since written. Looking back on what I have recently finished and comparing that to when I ...
11
votes
4answers
3k views
python: inheriting or composition
Let's say that I have class, that uses some functionality of dict. I used to composite a dict object inside and provide some access from the outside, but recently thought about simply inheriting dict ...
10
votes
6answers
3k views
Haskell function composition
I am reading this tutorial on Haskell. They define function composition as the following:
(.) :: (b->c) -> (a->b) -> (a->c)
f . g = \ x -> f (g ...
5
votes
3answers
807 views
Java GC: top object classes promoted (by size)?
Please let me know what is the best way to determine composition of young generation memory promoted to old generation, after each young GC event?
Ideally I would like to know class names which are ...
2
votes
2answers
2k views
Compose LINQ-to-SQL predicates into a single predicate
(An earlier question, http://stackoverflow.com/questions/3782799/recursively-compose-linq-predicates-into-a-single-predicate, is similar to this but I actually asked the wrong question... the solution ...
19
votes
4answers
440 views
Combining Predicates in F#
Is there a standard way of logically combining predicates in F#?
For example, let's say I have isCar x and isBlue x then I want something that gives me:
let isBlueCar x = isCar x && isBlue x
...
5
votes
1answer
169 views
Locate the correct composition root for a .NET library
I've read various other question here on the argument, most notably
Dependency Inject (DI) “friendly” library
Ioc/DI - Why do I have to reference all layers/assemblies in entry application?
and ...
4
votes
1answer
777 views
How can I compose an Entity Framework query from smaller, resusable queries?
I have a few (fairly redundant) queries in my app that are something like this:
var last30Days = DateTime.Today.AddDays(-30);
from b in Building
let issueSeverity = (from u in Users
...
12
votes
2answers
405 views
Tacit function composition in Haskell
Say I have a mean function defined like so:
mean xs = sum xs / (fromIntegral $ length xs)
but I want it in some tacit form, like this:
mean = sum / (fromIntegral . length)
Is there a built-in ...
7
votes
2answers
831 views
How to write solid Pure Aggregation (composition) Game Objects in Java?
So I am just at the beginning of writing a game in Java and I am writing my game objects. Now I have read here in Evolve Your Hierarchy that you should build your games as compositions and not as a ...
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 ...
4
votes
1answer
200 views
How to prioritize different catalogs in MEF?
I have a AggregateCatalog that contains an AssemblyCatalog and a DirectoryCatalog.
I want them to work like this:
If both catalogs can find an export, choose the one from the DirectoryCatalog.
If ...
3
votes
1answer
339 views
wpf - best practice of registering a DelegateCommand to a CompositeCommand
iv'e got a CompositeCommand exposed globally in my startup project
public static class Commands
{
public static readonly CompositeCommand DiceRolledCommand = new CompositeCommand();
}
in ...
3
votes
2answers
2k views
How to use AVMutableComposition and CALayers on iOS
I'm planning to render content in a view on iOS using AV mutable composition. I want to combine the video coming from one of the iPhone cameras with content created in a layer - mutable composition ...
2
votes
2answers
1k views
Is it possible to parameterize a MEF import?
I am relatively new to MEF so I don't fully understand the capabilities. I'm trying to achieve something similar to Unity's InjectionMember.
Let's say I have a class that imports MEF parts. For the ...
1
vote
1answer
2k views
Inheritance vs Composition [duplicate]
Possible Duplicate:
Prefer composition over inheritance?
I wonder, why (or in which cases) should one consider inheritance instead of composition when there are so much cons of it:
if we ...
0
votes
3answers
619 views
How can I unload a dll in order to delete it after a MEF recomposition?
1) With MEF, I compose my DLL
2) I work with my DLL
3) I recompose without this DLL
4) I want to delete it // => it doesn't work
How can I unload a dll in order to delete it after a MEF ...
5
votes
4answers
911 views
OOP Reuse without Inheritance: How “real-world” practical is this?
This article describes an approach to OOP I find interesting:
What if objects exist as
encapsulations, and the communicate
via messages? What if code re-use has
nothing to do with ...
4
votes
2answers
929 views
ios grasping composition
Let's say I have property A on classA and property B on classB and I want classAB to have both properties A and B. I still don't understand how to make this all work with composition.
I realize this ...
3
votes
1answer
969 views
Rails 3 with composed_of model and validation
I have this domain model:
class Person < ActiveRecord::Base
composed_of :address,
mapping: [%w(address_street street), %w(address_city city), %w(address_zip_code zip_code), ...
2
votes
2answers
193 views
Recursively (?) compose LINQ predicates into a single predicate
(EDIT: I have asked the wrong question. The real problem I'm having is over at http://stackoverflow.com/questions/3782940/compose-linq-to-sql-predicates-into-a-single-predicate - but this one got some ...
2
votes
4answers
3k views
java inheritance versus composition (implementing a stack)
I am trying to implement a Stack in java (using the list interface: Interface List).
I want to implement it two different ways: using composition and inheritance.
For inheritance, so far I have:
...
1
vote
2answers
3k views
error: constructor Player in class Player cannot be applied to given types;
whenever I compile my code, I receive the following errors:
error: constructor Player in class Player cannot be applied to given types;
but it doesn't list any types. The code in question is
...
1
vote
2answers
95 views
UML notation for 'ending' composition
Is there a UML notation for how many levels deep a recursion can be?
In a simple composition model I have branches that can have branches or leaves.
But a branch can only have a kid-branch and a ...
0
votes
1answer
119 views
Guidance in creating design for multiple-inheritance composite classes in c++
I intend this question to be a more generalized question relating to my question found at the following link:
Solving design involving multiple inheritance and composite classes in c++
I am working ...


