Tagged Questions

3
votes
9answers
124 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
11answers
107 views

What is the difference between identity and equality in OOP?

What is the difference between identity and equality in OOP?
2
votes
17answers
199 views

Compile a Java class against an interface even if none was specified

I'm teaching an intro to programming course and we're using Java. I want to help the students learn how to translate a written class specification into a working program. I will pr …
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 …
0
votes
3answers
132 views

Misuse of Observer Pattern?

I have a Car object which contains a latitude field and a longitude field. I use the observer pattern so that any time either of these fields change in my application, my car obje …
0
votes
7answers
129 views

a very simple c++ oop question

im struggling with syntax here: hopefully this question is v simple, im just miising the point. specifically, if i nest a class within another class, so for instance class a { …
2
votes
4answers
76 views

How can I inheriting from a concrete class in Perl?

Our software represents each device as a concrete class. So let's say I have a class named Cpu-Version-1, which is derived from a abstract baseclass called Device. Now, the CPU ven …
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(); …
0
votes
5answers
77 views

In a generic List<T> of objects, should I store the ‘OrderID’ inside each object, or just rely on the order in the list?

As the title says :) In my database the table I'm using has an OrderID field, which determines the order (strangely enough!) that the rows will be shown in when they are outputted …
0
votes
2answers
32 views

PHP/SQLite with multiple SQL statements: $db->Query() works, $this->db_sqlite->query() fails

I am creating a class that handles various SQLite actions. My problem is: When I make a SQL string with multiple statements then it works when using standard PHP => $db->query() .. …
0
votes
2answers
23 views

Abstract class ‘n Interface, specifically in PHP

This question is in continuation to my previous post located here. Since there is no way to post code sample again without editing your original post, I am starting a new post. A …
0
votes
10answers
120 views

Class design: Access a List<T> directly or through methods?

For a newsroom system I have a class that contains a single news story. Inside this class is a private variable holding a generic List of image classes. The idea being a single sto …
5
votes
3answers
90 views

Returning data from database in .net: Return a DataTable or LIst<T>?

I'm struggling with bridging the concepts of good database design with good object orientated design. Traditionally if I wanted to display a list of news stories in a repeater, I …
0
votes
1answer
22 views

How to extra generic parameter after where statement?

I have an abstract class as follow: class BaseReturnType { } class DerivedReturnType : BaseReturnType { } abstract class BaseClass<T> where T : BaseReturnType …
0
votes
2answers
28 views

What is best approach on designing this generic abstract class? (Part 3)

Hi all Based on previous question, I've changed the context as follow: I have abstract class called Tenant and CustomerList. The Tenant in this case is like owner of the applica …

1 2 3 4 5 58 next
15 30 50 per page