1
vote
4answers
90 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
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
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
86 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 ...
1
vote
2answers
66 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 ...
0
votes
3answers
94 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
30 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?
2
votes
3answers
99 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
142 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
66 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
143 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
559 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
1answer
50 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 ...
4
votes
2answers
137 views

Best Practice for Domain Entity Tracking Data? Base class or Composition?

One common aspect of most large projects is the need for common tracking data on many Domain Entities. For instance, most large projects, track the following properties for many Domain Entities: ...
0
votes
3answers
210 views

OOP: Object Inheritance and Composition Relationships in Simple Game Design [closed]

I'm currently learning Java for several reasons, but one of the main ones being that it's a very OOP orientated language, and writing code in Java is really helping me understand the core concepts ...
1
vote
1answer
109 views

Regarding favoring composition over inheritance approch, STRATEGY pattern

I was ask an question in an interview that was lets say there's the class A with a method drawShape() and there's an another class B with the method drawSquare(). Now there's a third class C. In my ...
6
votes
1answer
98 views

Should I be using Inheritance or Composition in this case?

I'm writing a simple game and a lot of the game objects share attributes. I have two potential implementations for this. The first is using inheritance as specified in the following image: The ...
1
vote
1answer
62 views

How do I call the invokeLater method from a thread in Java?

Ok, this is my problem: I am trying to build a custom download helper for one of my projects. I wanted my implementation to allow multiple downloads (running simultaneously) so I figured that I ...
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 ...
1
vote
2answers
37 views

When subclassing an object, what is the appropriate method to handle functions that don't make sense on the child?

Before I jump into the meat of the question, let me note that this is a purely theoretical query. I'm not interested in this for practical reasons, I'm interested in the underlying OOP theory on how ...
2
votes
4answers
109 views

Inheritance or composition on gui objects

I am developing a simple game. I created a Maze class which contains methods and algorithms for creating / modifying / solving mazes. I also created a GraphicalMaze class, which should only contain a ...
1
vote
2answers
236 views

C++ classes (composition and inheritance - header files, array of classes)

I have written 4 header files (of classes) of which 3 classes has been successfully compiled (Customer, GoldCustomer and PlatinumCustomer). GoldCustomer and PlatinumCustomer are derivation ...
1
vote
1answer
235 views

Relations between classes - both inheritance and composition [closed]

I've a game I'm working on, Snake. I've problem with the relationships between classes and I don't really understand why. I've these three classes: Snake - The snake class. Food - The food which ...
0
votes
2answers
89 views

Is composition (as opposed to inheritance) not extremely tedious?

Say you have interfaces IBuilding and IDwelling, and class House which implements both. It encapsulates a building and a dwelling: class House implements IBuilding, IDwelling { private IBuilding ...
2
votes
3answers
500 views

Extends Frame class in main method's class

Today when I was reading my lecture notes, I don't understand what the purpose of extends is in this context. Consider this code: import java.net.*; import java.awt.*; public class QueenApl ...
1
vote
3answers
52 views

Sharing base object with inheritance

I have class Base. I'd like to extend its functionality in a class Derived. I was planning to write: class Derived(Base): def __init__(self, base_arg1, base_arg2, derived_arg1, derived_arg2): ...
0
votes
2answers
71 views

Using both Inheritance and Composition in the same class?

I know the rule of using inheritance when there is an is-a relationship, and composition when there's a has-a relationship, but are the two mutually exclusive/replacements for one another or would ...
0
votes
1answer
128 views

How to redirect all methods of a contained class in Python?

How to implement the composition pattern? I have a class Container which has an attribute object Contained. I would like to redirect/allow access to all methods of Contained class from Container by ...
3
votes
1answer
89 views

Composition over inheritance in this case?

Wanted to solicit whether composition over inheritance makes sense here, and if so a good way to go about it. I have an interface like so: public interface IUser { string FirstName {get; set} ...
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 ...
3
votes
4answers
133 views

TDD and inheritance

I am working on my first project using TDD and have hit a bit of a brick wall when it comes to inheritance. For example if I have something like this public interface IComponent { void ...
4
votes
4answers
144 views

Abstract Base or Helper Class

I just today learned a little about Composition over Inheritance. I was wondering if I should apply the concept to something I wrote recently. We previously had two classes that were almost ...
0
votes
1answer
151 views

Add component in a JPanel subclass

I want to create a JPanel subclass thats holds some JLabels. I started to write my code but I immediatly find a big problem. Component added to the JPanel subclass are not visible (or they are not ...
0
votes
0answers
66 views

Java wrapping library by composition vs inheritance?

I am going to wrap about 20~30 classes from itext libray, so that end user wouldn't need to import the library classes directly. If I use composition, I have to put many casting codes. So I prefer ...
0
votes
0answers
200 views

Django model inheritance vs composition, and querying multiple models/tables together

I have a Django app that has a number of different models, all with a bunch of common data. Ultimately, I think this question comes down to a decision between inheritance and composition. My current ...
6
votes
4answers
171 views

Should composition be used exclusively over inheritance or are there cases when it should not?

In the example I'm thinking of I have about 4 lines of code that could be encapsulated by a function, and this function will surely be used in other classes in the same hierarchy. I have the ...
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; ...
1
vote
1answer
124 views

Checking composition with inheritance constraints at compile time in Java

I've got a question regarding the best-practices of Java inheritance & composition: Say you've got a Fruit which gets extended by Apple and Lemon. Next to these you also got a Basket that ...
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 ...
2
votes
2answers
157 views

Java Swing: Does the phrase “favor composition over inheritance” apply?

Does the phrase "favor composition over inheritance" apply to Swing components? I'd like to gather some professional opinions about the subject and which code is easier to maintain before I go ahead ...
0
votes
0answers
85 views

Class Design Dilemma - Usage of base class to “common out” repeating code in derived classes

I have a lot of Page classes to work with, for my test automation. Each of them has three following essential elements: WebDriver Uri Essential element of that page. I decided to make a base class ...
-2
votes
1answer
302 views

Google Go, composition and multiple inheritance

Since Google Go uses an composition system instead of (multiple) inheritance, I'm just wondering about these 3 code snippets. Google Go says they force the programmer to use composition. A) should be ...
0
votes
1answer
145 views

I need to understand composition and inheritance better

I have a baseball player super class I have a left field, center field, right field, 3b, ss, 2b, 1b, catcher, pitcher that inherits from player. So, let's take the pitchers for example. Would a ...
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 ...
3
votes
2answers
913 views

What is the difference between Event-Delegation Model and Event-Inheritance Model?

I tried searching for the disparities between Event-Delegation Model and Event-Inheritance Model but did not find answers concrete enough to distinguish the two. What is the real differences between ...
4
votes
4answers
650 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
1answer
95 views

Understanding when to use inheritance to allow one class to use instances of another

When creating classes, is there a rule for when to use inheritance and when to import a new class, without inheritance, into another? Here’s an example: I make a class called Person, and then create ...
0
votes
4answers
214 views

need a std::vector with O(1) erase

I was surprised to find out the vector::erase move elements on calling erase . I thought it would swap the last element with the "to-be-deleted" element and reduce the size by one. My first reaction ...
0
votes
2answers
122 views

Solving UML in Java Scenario

I am a beginner level of studying java and revising for my exams through answering the questions on previous past exam papers and there is one question that I am stuck on. An OO design for a game has ...
1
vote
3answers
461 views

Using composition instead of inheritance

I come from a ECMAScript background (seems to be very C/C++). Thus, I learned classic C++ style inheritance involving classes, objects, and cool stuff like polymorphism. I like Android and iOS ...

1 2 3