Tagged Questions

Composition is the process of combining, or composing, parts of a program into a larger program.

learn more… | top users | synonyms

146
votes
21answers
20k views

Prefer composition over inheritance?

Why prefer composition over inheritance? What trade-offs are there for each approach? When should you choose inheritance over composition?
23
votes
10answers
7k 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 ...
22
votes
2answers
637 views

Mixins vs composition in scala

In java world (more precisely if you have no multiple inheritance/mixins) the rule of thumb is quite simple: "Favor object composition over class inheritance". I'd like to know if/how it is changed ...
21
votes
7answers
2k 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 ...
19
votes
4answers
3k 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 ...
18
votes
1answer
173 views

Expressive and composable error types

I am struggling with the best way to report errors in a set of functions that should compose nicely, in a library I'm working on. Concretely, I have functions that look like: foo, bar, baz :: a ...
18
votes
13answers
2k views

Why use inheritance at all?

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 ...
16
votes
21answers
845 views

How closely related is music composition to coding?

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 ...
16
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 :: ...
14
votes
3answers
3k 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 ...
14
votes
1answer
619 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. ...
12
votes
6answers
3k 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?
11
votes
3answers
488 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 ...
11
votes
5answers
4k 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 ...
11
votes
8answers
564 views

Meta-composition during music performances

A couple of weeks ago, my piano teacher and I were bouncing ideas off of each other concerning meta-composing music software. The idea was this: There is a system taking midi input from a bunch of ...
10
votes
7answers
472 views

What does it mean for something to “compose well”?

Many a times, I've come across statements of the form X does/doesn't compose well. I can remember few instances that I've read recently : Macros don't compose well (context: clojure) Locks don't ...
8
votes
7answers
376 views

Does C# support function composition?

In the latest version of C#, can I do something like this? I feel like linq is the closest but that's chaining, not function composition, right?
8
votes
2answers
576 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 ...
7
votes
4answers
131 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 ...
7
votes
5answers
1k 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 ...
6
votes
2answers
197 views

How to write without Do notation

I was playing around with composable failures and managed to write a function with the signature getPerson :: IO (Maybe Person) where a Person is: data Person = Person String Int deriving Show ...
6
votes
5answers
188 views

How to overload an operator for composition of functionals in C++0x?

Is there a way to overload, say the >> operator for function composition? The operator should work seamlessly on lambdas as well as std::function? Requirements: The solution should not ...
6
votes
3answers
414 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) # ... ...
6
votes
4answers
221 views

Is there a workaround for Composition and Marker Interfaces?

I see myself regularly confronted with the following problem. I have some kind of Marker Interface (for simplicity let's use java.io.Serializable) and several wrappers (Adapter, Decorator, Proxy, ...
6
votes
4answers
1k 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 ...
6
votes
6answers
313 views

Does pure composition break OOP concepts?

class Room{ public: void ColorRoom(){}; }; class House{ public: Room* GetRoom(){return &m_room;} private: Room m_room; }; 1) Room cannot exist without a house, an house "has ...
6
votes
1answer
3k views

MEF: Calling Refresh() on a DirectoryCatalog throws ChangeRejectedException if new DLLs found in directory (C#)

I'm experimenting with MEF and created a test program to call "plugins" that implement some given interface, which follows: using System; using System.Collections.Generic; using System.Linq; using ...
6
votes
10answers
809 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 ...
5
votes
2answers
179 views

Abstracting monad composition as a transformer

Sorry if the question seems a bit trivial... it is not for me. I have happily composed the following monad: type SB i a = ReaderT ( AlgRO i ) (State ( AlgState i ) ) a which is, well, a well ...
5
votes
2answers
268 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
3answers
166 views

Haskell help with . and $

As an example, take the following type Row a = [a] type Table a = [Row a] mapTable :: (a -> b) -> Table a -> Table b mapTable = map . map notTable :: Table Bool -> Table Bool notTable = ...
5
votes
5answers
276 views

Composition in c++ with raw or smart pointer?

A little example of what I want to do. I have a list of (stack allocated) vertices class Vertex { int id; double x; double y; double z; }; and want to create a list of edges ...
5
votes
3answers
390 views

Design using composition and interfaces in Java

I designed the following for a problem: class Animal { // ... } class Guppy extends Animal { ... } class Pigeon extends Animal { ... } class TailedAnimal extends Animal { // ... } class Dog ...
5
votes
4answers
1k views

What are advantages of using composition over inheritance where we need to add behavior to a List<>?

What are the advantages/disadvantages of Option 2 over 1 in this example? Option 1 (Inheritance): public class SalesList : List<Sales> { //methods that add extra behavior ...
5
votes
3answers
2k views

UI composition in ASP.NET MVC

How would you go about supporting external composable parts in an ASP.NET MVC view? What do I mean by this? Think either "login box on every page" or "iGoogle". It's stuff that needs to be in certain ...
5
votes
6answers
386 views

Would syntax for composition be a useful addition to Java?

First off, I know next to nothing about language theory, and I barely know any other languages except Java, but I had an idea that I think would be cool, but I need you guys to tell me: a: why it ...
4
votes
1answer
110 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( /* ...
4
votes
2answers
135 views

Composing trait behavior in Scala

Consider these two traits: trait Poked extends Actor { override def receive = { case Poke(port, x) => ReceivePoke(port, x) } def ReceivePoke(port: String, x: Any) } trait Peeked ...
4
votes
4answers
262 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
1answer
65 views

Best way to mix and match components in a python app

I have a component that uses a simple pub/sub module I wrote as a message queue. I would like to try out other implementations like RabbitMQ. However, I want to make this backend change configurable ...
4
votes
5answers
238 views

auto-instantiated smart pointer

I am looking for a simple way to reduce header coupling in a C++ project, which comes mostly due to (overused) class composition which of course requires complete type. For example: // header A class ...
4
votes
2answers
294 views

How to export a type in MEF as if the Export Attribute had been applied to that type?

I would like to dynamically apply the MEF Export attribute to a type at run-time, exactly as if the type had had an Export attribute applied at compile time. Is there a simple way to do this? ...
4
votes
2answers
367 views

Using Composition in ruby

I'm new Ruby but been a .net dev for many a year. I want to implement composition within a couple of my model to make sure they are as loosely coupled as possible but have no idea where to start, or ...
4
votes
3answers
312 views

Code Complete 2ed, composition and delegation

After a couple of weeks reading on this forum I thought it was time for me to do my first post. I'm currently rereading Code Complete. I think it's 15 years since the last time, and I find that I ...
4
votes
3answers
266 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 ...
4
votes
7answers
224 views

Is there a way to reassign $this?

First of all, I do not want to extend a class. I would ideally like to do this. public function __construct() { /* Set Framework Variable */ global $Five; $this =& $Five; } I have a system ...
4
votes
3answers
670 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 ...
4
votes
1answer
2k views

ColdFusion: Invoke cffunction from the same component

This question might be naive as I'm new to ColdFusion programming. I have a task for which I have written a function, f1, inside a component. I want to call f1 from another function, f2 defined in ...
4
votes
7answers
931 views

How does a game engine that models objects as “collections of components” work at runtime?

I'm writing a lightweight game engine and while doing some research for it I've come across a number of compelling articles advocating the implementation of Game Objects through a "collection of ...
3
votes
1answer
73 views

I want to stop using OOP in javascript and use delegation instead

After dabbling with javascript for a while, I became progressively convinced that OOP is not the right way to go, or at least, not extensively. Having two or three levels of inheritance is ok, but ...

1 2 3 4 5