Tagged Questions
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
3answers
97 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 ...
0
votes
1answer
88 views
“'SpaceShip' does not name a type” even though SpaceShip certainly is a type [duplicate]
I'm working on an Asteroids game as a way to teach myself some programming stuff, and I'm getting this error that one of my classes doesn't name a type.
I have a SpaceShip class that inherits from ...
0
votes
2answers
83 views
Is this the correct way to implement composition in C++?
A chest is composed of treasure.
I've implemented it the following way:
treasure.hpp
#pragma once
class Treasure{
public:
protected:
private:
//data members
int gold;
};
...
0
votes
1answer
204 views
“Cannot access protected property” Error
I have two classes involving composition not inheritance., class A and class B. One of class A's properties is an array of class B objects. Class A has a public method A::getName(). Class B also has a ...
1
vote
2answers
238 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 ...
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 ...
1
vote
0answers
40 views
Use custom stream manipulators across multiple cpp files
I have a cpp file that contains a few custom stream manipulators that I want to use. I also have 3 classes, 1 of which is composed of the other two. Is there a way to define this manipulator file, so ...
0
votes
2answers
113 views
classes calling other classes
I have some classes.
In the facade I have an starter class which is instantiated and calls all the methods from there.
Then I have a car class, and owner class, a garage class and a parking space ...
2
votes
5answers
222 views
Can an abstract class be member of other concrete class as composition relationship ? c++
P is an abstract class, I want to make it member of class A which is a normal concrete class. Is it possible if yes how. Relationship is composition
Thanks for help
-2
votes
3answers
62 views
How do I return a point object aggregated in a another class?
How do I return a point object aggregated in a another class? I'm trying to return a point object that's a private member of the quad class. I have written the function and it compiles, but I don't ...
1
vote
5answers
88 views
Is the way of grouping classes different with PHP? [closed]
As the title states; the way one groups classes in PHP compared to for example Java, is it supposed to be different? I am currently reading O'Reilly's book OOA&D and in the chapters I've learned ...
-2
votes
3answers
855 views
Is inner class work as composition relationship in java? [closed]
The inner class is always inside the outer class and if we remove outer class then the inner class would also be destroyed. I don't think about memory release, I am only thinking about the concept. ...
0
votes
1answer
172 views
How to do “composition of c++” in c++/cli
I am facing trouble in doing containership in c++/cli. I have got two classes.One is a directory class with a data member "System::string^ path" and the other class is "file" with the data ...
3
votes
1answer
499 views
Using self-defined Cython code from other Cython code
I am currently trying to optimize my Python program and got started with Cython in order to reduce the function calling overhead and perhaps later on include optimized C-libraries functions.
So I ran ...
0
votes
1answer
541 views
Display bidirectional and composition relation UML class diagram
I have two classes Event and Review.
The event has an instance object Review in it.
A review also has an object Event in it.
This means a bidirectional relationship between them (two arrows).
When ...
0
votes
1answer
152 views
How can I achieve this kind of relationship (inheritance, composition, something else)?
I would like to set up a foundation of classes for an application, two of which are person and student. A person may or may not be a student and a student is always a person. The fact that a student ...
2
votes
6answers
888 views
C++: Composition Interface
So I've spent some time thinking about this and been all over google looking for a 'solution' (the solution is most likely a matter of preference, but I'm unsure about this). Below is the problem I ...
2
votes
2answers
2k views
Class Composition in Objective-C Question: Is it possible to inherit a class variable?
To help gather a sense of Objective-C I'm creating a very basic connect 4 game sans Cocoa.
In my program I have three modules:
"Game": Contains an array that holds the board information. Object ...