Tagged Questions

1
vote
2answers
23 views

Code generation for composition using Eclipse

Effective Java, along with other sources suggest that we should consider using composition over inheritance. I have often found my self achieving such composition by using the Dec …
1
vote
4answers
179 views

C++ Templated return

Hey Folks, I have a program which is built on "Entities", which hold "Components" (composition FTW). Components may include many different types including scripts, assets, etc. I …
0
votes
2answers
14 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; s …
0
votes
1answer
60 views

How to deal with double composition and inheritance?

I found this related question: http://stackoverflow.com/questions/279158/how-do-i-use-composition-with-inheritance I would like to do the same with Objective-C, that is to say tha …
0
votes
0answers
13 views

Run Time Object Graph Builder Composition Library

I am working on a project and have started to use IOC/DI (Unity) and I've looked into MEF. I have come across something which is related to IOC/DI and could probably reuse many of …
11
votes
1answer
137 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 …
4
votes
5answers
234 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 …
1
vote
3answers
258 views

java inheritance versus composition (implementing a stack)

Hey everyone, 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. …
2
votes
3answers
163 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 compar …
6
votes
4answers
374 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 rela …
0
votes
3answers
56 views

Motivating factors for composing a particular object?

I know there are LOTS of reasons why you would compose a certain object inside another one. Some schools of thought have made explicit the reasons for architecting a program a cert …
2
votes
3answers
373 views

[PHP] How to combine words of a sentence to composed terms?

Hello! I have a sentence, for example John Doe moved to New York last year. Now I split the sentence into the single words and I get: array('John', 'Doe', 'moved', 'to', …
1
vote
1answer
44 views

Encapsulation Aggregation / Composition

The Wikipedia article about encapsulation states: "Encapsulation also protects the integrity of the component, by preventing users from setting the internal data of the component …
13
votes
21answers
441 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 amat …
0
votes
2answers
67 views

What is web service composition?

What exactly is web service composition?

1 2 3 next
15 30 50 per page