The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
3answers
45 views

Is it generally considered a bad practice to alter the object's state via its getter method?

I've been thinking about this for a while during my past development. I am kind of against doing such things, I've normally declared a separate method that explicitly handle the logic. E.g. If a ...
3
votes
2answers
67 views

Java - Why does ClassName.this.variable work when variable is static? [duplicate]

I'm trying to fully understand how does "this" work. In my previous post I understood why we use the "this" keyword. My understanding of static is that the class has one copy of that member. "this" ...
4
votes
2answers
155 views

Redundant code in composition class C++

I'm trying to pick up C++. Everything was going well until my 'practice' program hit I very minor snag. That snag, I believe, stems from a design issue. Think of Blackjack(21). I made a few ...
1
vote
1answer
95 views

PL/SQL Object Composition: Problems With Object Instantiation/Constructor

This is a follow-up question to Is it possible to use object composition in PL/SQL? That question addressed how to create object types in PL/SQL which are mutually dependent (i.e. one attribute of ...
2
votes
1answer
83 views

Is it possible to use object composition in PL/SQL?

I'm trying to figure out how to implement object composition using pl/sql object types. Here is my super simple example. CREATE OR REPLACE TYPE PERSON FORCE AUTHID DEFINER UNDER ...
1
vote
3answers
72 views

Object composition - cannot access object properties

Hi i have a problem with object composition. The class CInvoice needs to have a CCustomer object inside, so I created a constructor that requires a customer. In Invoice.h file there is a line: ...
1
vote
3answers
160 views

How to make python class support item assignment?

While looking over some code in Think Complexity, I noticed their Graph class assigning values to itself. I've copied a few important lines from that class and written an example class, ObjectChild, ...
0
votes
2answers
92 views

vb.net - Object aggregation of inherited classes

I'm playing around with composition of a couple of objects. I have two classes (Note and task). The Task class is derived from the Note class as a task is an extented note. Each note has a property ...
1
vote
1answer
299 views

c# object composition

I have a class called LetterRect with two of the fields being of type LetterSquare. For example: public class LetterRect : Microsoft.Xna.Framework.GameComponent { private LetterSquare square1; ...
6
votes
2answers
146 views

Composing polymorphic objects in ASP.NET MVC3 project

The essence of my question is how to compose these objects (see below) in a sensible way with MVC3 and Ninject (though I am not sure DI should be playing a role in the solution). I can't disclose the ...
4
votes
5answers
841 views

Object composition promotes code reuse. (T/F, why)

I'm studying for an exam and am trying to figure this question out. The specific question is "Inheritance and object composition both promote code reuse. (T/F)", but I believe I understand the ...
1
vote
3answers
1k views

Difference between inheritance and composition

I have extracted following difference between inheritance and composition. I wanted to know what does delay of creation of back end object mean? Please find below difference. Composition allows you ...
3
votes
7answers
367 views

Is there Method Inheritance in C#

I am wondering whether there is any feature like method inheritance rather than whole class inheritance, let me elaborate what I am trying to explain : class a { public void GetA(){ // some ...