0
votes
1answer
24 views
OOP - Modelling Client and Employees class with Person as a base.
Apologies if this was already asked but, I have had a look and can't find anything. I am trying to work out the best way to model the following in C#. I have sketched out a few ide …
1
vote
1answer
27 views
designing a flexible user lookup mechanism
So there is an internal email application, that has different installations in the company (various departments).
When an email comes into the system, I need to perform a lookup b …
0
votes
11answers
104 views
What is the difference between identity and equality in OOP?
What is the difference between identity and equality in OOP?
1
vote
9answers
120 views
what is an abstract data type in object oriented programming?
what is an abstract data type in object oriented programming? I gone through wiki.But i dint get cleared.Please make me clear
0
votes
4answers
60 views
How to expose a method in an interface without making it public to all classes
I have a issue where I'm working with a particular interface for quite a lot of things. However, I have a particular method that I want to be available only to a particular group o …
3
votes
0answers
55 views
matlab oop: is it slow or am I doing something wrong ?
I'm experimenting with matlab oop, as a start I mimicked my C++'s Logger classes and I'm putting all my string helper functions in a String class, thinking it would be great to be …
-2
votes
2answers
45 views
what is meant by Business,System,Interface,Persistence classes?
what is meant by Business,System,Interface,Persistence classes? Explain me with some examples?
8
votes
3answers
115 views
Should one interface inherit another interface.
I can't seem to find an answer on this and just want to make sure it's an ok coding standard. I have Interface A that is used by many different classes and don't want interface A …
6
votes
13answers
208 views
When should one use interfaces?
I know that an interface does not have a body just a method definition. But when should I use interfaces? If I provide someone a set of interfaces with no body, why would they feel …
2
votes
5answers
78 views
Can Someone Explain MustOverride?
Hi there,
Can someone explain not what MustOverride does, but why use it? Is it to expose the function?
I have two classes, the first (RoomFactory);
Public MustInherit Class Roo …
0
votes
2answers
53 views
[PHP]: Using -> instead of direct function call.
In some classes I see a call to a function is like:
$this->ClearError();
When the function is residing in that class itself. How is the above approach different from a direct …
0
votes
3answers
33 views
How to organize OO js code in files? Local network application
I'm currently developing an application that will be run on local network in B2B environment. So I can almost forget about micro(mini?) optimizations in terms of saving bandwidth b …
0
votes
3answers
51 views
Class call a function in another class…
I have a class like:
<?PHP
abstract class dbCon
{
public function OpenConnection()
{
// Do Something;
// On error:
$this->ShowError(); …
4
votes
5answers
130 views
Inheritence to extend a data structure in Haskell
A C++ programmer trying to learn Haskell here. Please excuse this probably easy question. I want to translate a program that represents 3D shapes. In C++ I have something like:
…
15
votes
17answers
717 views
Design pattern for class with upwards of 100 properties
What advice/suggestions/guidance would you provide for designing a class that has upwards of 100 properties?
Background
The class describes an invoice. An invoice can have upwar …
