Composition is the process of combining, or composing, parts of a program into a larger program.
0
votes
3answers
45 views
Having trouble with composition C++
I'm trying to declare a member-object in a class in C++, like so:
class bankAccount
{
public:
bankAccount(int, int, int, string, int);
private:
bankBranch homeBranch;
};
...
0
votes
4answers
61 views
Composing functions in python
I have an array of functions and I'm trying to produce one function which consists of the composition of the elements in my array.
My approach is:
def compose(list):
if len(list) == 1:
...
0
votes
0answers
15 views
Regarding HTML Templates: Inheritance vs. Composition [closed]
There have been a few questions asked about composition vs inheritance in general, some of which have very good answers, such as this one.
I was wondering what the trade-offs were when talking about ...
4
votes
1answer
111 views
Understanding Data-centric app and object composition in Clojure
I've recently been much impressed by the work of Chris Granger and his Light Table. This question is not about light table though, but more about the "BOT" architecture he described using in his blog ...
31
votes
5answers
8k 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 ...
1
vote
4answers
93 views
What is the alternative to Comparator<T> when using composition over inheritance?
While refactoring a Java project to use composition and no inheritance, I have remaining a problem where polymorphic sorting of Collections was performed.
Inheritance example:
public class AClass
{
...
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
1answer
37 views
Association, Aggrgation and Composition in UML Diagram
So I have some question about the association, aggregation and composition in UML diagram. Here is some scenarios :
Product review rating composition to product review. This means that for each ...
0
votes
3answers
190 views
python function list chained executing?
In python I defined functions:
def foo_1(p): return p + 1
def foo_2(p): return p + 1
def foo_3(p): return p + 1
def foo_4(p): return p + 1
def foo_5(p): return p + 1
I need execute those function ...
0
votes
1answer
47 views
Trying to understand composition between c++ classes
I am having a hard time getting my head around how to correctly perform composition between C++ classes. Here is an example of where I'm getting stuck:
#include <iostream>
using namespace std;
...
0
votes
1answer
27 views
modeling composition and expose inner interface
I need to model something like this,
ClassA implements interface IClass;
ClassB implements interface IClass;
ClassA has a ClassB (composition);
But the ClassA's interface is the same interface of ...
0
votes
0answers
42 views
Composition over Inheritance [duplicate]
I am going through some articles in order to comprehend the claim of many programmers that "Composition should be preferred to Inheritance". Although I am not oppossed to that statement, I have to ...
0
votes
1answer
33 views
Sorting: composition vs external sorting facility
Reading a book I found this solution for sorting my own data set:
class QuickSort {
public String[] sort(String[] array) {
// Implementation
}
}
class MyDataSet {
private String ...
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> ...
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 ...
0
votes
3answers
44 views
Deriving from and compositing same Class. C++
What happens if a class has a "has-a" relationship with another class, and also it derives this same class?
class A
{
friend classB;
// here lots of things might be , but i just try to ...
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 ...
3
votes
1answer
261 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 ...
-1
votes
2answers
61 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 ...
1
vote
1answer
91 views
enums vs. classes: code duplication, composition, extension, generics
Note: I realize that this is very similar to the question eliminating
duplicate Enum code, but I think it may be useful to discuss this
separately since I'm also mentioning issues like ...
2
votes
1answer
42 views
Demonstration of Composition for Swing
I'm currently undertaking a Java programming course in pursuit of a degree, and while I have a bit of familiarity with basic programming concepts already, I've never used Java specifically prior to ...
28
votes
4answers
572 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 ...
1
vote
2answers
68 views
Extending a class which contains reference to List of itself
I have a super class something like
class SuperClass {
private String name;
private List<SuperClass> subList;
//getter setters
}
And I want to extend this SuperClass to have few more ...
350
votes
27answers
51k 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?
0
votes
3answers
61 views
set up models to have a unique id attribute value among corresponding tables
I'm new to rails and I'm facing a problem with how to set up my models.
I've got a set of models: Balloon, Paint, Brush etc.
They have common attributes (like "name")
I want them to have a unique ...
0
votes
2answers
164 views
Terminology - parts of a composite relationship
Assume I have a composite relationship, say a Customer having a collection of Orders (and assuming an Order cannot exist without an "owning" Customer.) So, I'm not talking about aggregation.
What ...
2
votes
2answers
1k views
How to combine words of a sentence to composed terms?
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', 'New', 'York', 'last', ...
3
votes
2answers
197 views
How can I change part of the composition in MEF after composition?
I've setup my app to have a discoverable security service (ISecurityService) which has a single method IPrincipal GetPrincipal(). Implementers are free to then decide how to get the principal (via ...
13
votes
5answers
869 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 ...
3
votes
1answer
116 views
A generic composition with ambiguity detection
I want to define a generic composition which works both for a -> b and for a -> Maybe b:
class Comp m where
(...) :: m a b -> m b c -> m a c
instance Comp (->) where
(...) = ...
0
votes
3answers
98 views
Java - trying to understand composition [duplicate]
I'm implementing a basic payroll program in Java. I have an abstract super class called Employee that mainly stores data like tax ID, name, etc. I then have 2 subclasses of Employee called Hourly and ...
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?
3
votes
0answers
102 views
MEF [ImportingConstructor] not called until [Import(AllowDefault = true)] is used
I am using MEF1 and running in to an odd scenerio.
This constructor is never called:
[ImportingConstructor]
public LogViewModuleRoot(INavigationCommandManager navigationCommandManager,
...
2
votes
3answers
102 views
When do we use ruby module vs using class composition?
A question similar to this has been asked before, but I am asking specfically using composition as an alternative to using modules mixin.
class Helper
def do_somthing
end
some variable ...
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, ...
1
vote
2answers
67 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 ...
1
vote
3answers
146 views
Composition pattern
How should one approach composition instead of inheritance? Consider the following class:
class GameObject {...};
class Sprite {
public:
void changeImage(...);
};
class VisibleGameObject: ...
1
vote
2answers
88 views
How to embed default implementations in go & refer to the embedding type
I'm currently playing around with some go code, and have run into a small problem involving embedding which I can't find a satisfactory answer to. Given two types, one of which embeds the other, and ...
0
votes
2answers
31 views
ruby composition - how to show members of the composed class?
Coming from rails where I am used to the rails framework managing relationships for me.
Now trying to just do basic Ruby.
Trying to understand relationships and composition.
Using Pack of Cards as ...
2
votes
1answer
114 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
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 ...
0
votes
2answers
258 views
Has-A Relationship
public class Elevator ()
{
Button firstFloorbutton = ButtonFactory.getButtonInstance(this, 1);
Button secondFloorbutton = ButtonFactory.getButtonInstance(this, 2);
Button thirdFloorbutton ...
6
votes
0answers
205 views
No vsync without Aero composition; cannot turn on Aero on CreateDesktop() made desktop
I'm rendering with OpenGL. My stuff is sandboxed so I use CreateDesktop() to prevent shatter attacks. However, the new desktop has no Aero composition when created for whatever reason (though the ...
0
votes
1answer
112 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 ...
1
vote
1answer
166 views
Compositing two images with python wand
I need to use python wand (image-magick bindings for python) to create a composite image, but I'm having some trouble figuring out how to do anything other than simply copy pasting the foreground ...
1
vote
2answers
187 views
GWT MVP composition of parts
We've been using the recommended GWT approach of building parts of our application in an MVP manner. The logic we use is based on Google's examples - the Presenter fetches/prepares data and sets it on ...
1
vote
1answer
100 views
MEF Composition Error, Export doesn't work as it should
this is my form which should display the result from my imported class:
public partial class Form1 : Form
{
[Import(typeof(ITests))]
public ITests Template;
public string texter;
...
1
vote
1answer
53 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 ...
1
vote
2answers
53 views
MEF and Versioning
I'm thinking of using MEF to solve a plugin management requirement. In the blurb it says "no hard dependencies" but as far as I can see, there is a hard dependency on the import/export interface.
My ...




