0
votes
6answers
110 views
Events or Inheritance?
Hello,
I have a process class, where if the input contains a value it will also do something else.
For example
Person { name; age }
ProcessPerson(person) //takes in a person
in the ProcessPerson …
1
vote
2answers
61 views
Is this a sane implementation of constructor injection?
Following on from my question on service locators I have decided to use constructor injection instead. Please consider the following code:
<?php
interface IAppServiceRegistry {
…
2
votes
3answers
65 views
PHP[OOP] - How to call class constructor manually?
Please see the code bellow:
01. class Test {
02. public function __construct($param1, $param2, $param3) {
03. echo $param1.$param2.$param3;
04. }
05. }
06.
07. $params = …
1
vote
9answers
282 views
How can I improve my Object Oriented Programming?
I understand procedural programming (well, who doesnt) and want to get a good understanding of OOP and after that functional. I'm just a hobbiest so it will take me an age and a day, but its fun.
…
1
vote
2answers
37 views
ServiceLocator and the Open/Closed Principle
I'd like to:
Make commonly required services visible to all classes that need them,
with a minimum of boilerplate, and
without sacrificing testability!
It's a small project and I think DI might be …
5
votes
8answers
136 views
Why are circular dependencies considered harmful?
Why is it a bad design for an object to refer to another object that refers back to the first one?
0
votes
1answer
29 views
PHP OOP Design for simple Models
Hi,
i've a little problem with the proper design for some simple database models. Lets say i have an User Object with getter/setters and an read method. Read querys the database and sets the …
2
votes
3answers
46 views
PHP [OOP] : Memory allocation for Inheritance
Please see the code bellow:
class A {
public x = 5;
public y = 6;
public z = 7;
}
class B extends A {
public m = 1;
public n = 2;
}
$a = new A();
$b = new B()
From the above …
1
vote
3answers
71 views
Object Oriented Design approach to a conversion app
I think i might be being blinded by the way I've learned OO principles. Its always taught in the manner of tangible object is a descendant of another tangible object. Anyway...
I'm trying to work out …
3
votes
5answers
56 views
Has-A relationship applies to inherited members?
Given the code:
class Car{
Engine engine;
}
class SportCar extends Car{
SportChair chair;
}
Is it valid to say that 'SportCar "has-a" Engine and a SportChair'?
Or the only valid affirmations …
1
vote
3answers
143 views
[C++] Why shall I use “using” keyword to access my base class method?
I wrote the code below in order to explain my issue. If I comment the line 11 (with the keyword "using"), the compiler does not compile the file and display this error: invalid conversion from 'char' …
2
votes
4answers
90 views
C#: Resolving Invalid Cast Exception Between an Inherited Class and Its Base
I have two classes, named Post and Question. Question is defined as:
public class Question : Post
{
//...
}
My Question class does not override any members of Post, it just expresses a few other …
-1
votes
5answers
84 views
How can I use class?
I have a ready made php class. Now how can I use that class or implement it in my page?
2
votes
1answer
256 views
How do I inspect a Class in Objective-C?
Update I fixed up the code to eliminate duplication of overridden methods and track originator of property or method by implementing Mark's suggestion. Haven't tackled property types yet (will …
0
votes
1answer
18 views
Problem with FluentNhbernate Mapping
Hi, I am new to all the OOP and ORM stuff, so i would appreciate your help...
I have a Team Class:
public class Team : IEntity<Team>
{
public virtual int ID { get; private set; }
…
