vote up 3 vote down star
1

what is an abstract data type in object oriented programming? I gone through wiki.But i dint get cleared.Please make me clear

flag

48% accept rate
9  
memset(sevugarajan, 0, sizeof(sevugarajan)); Ok, you're clear. – Artelius Nov 7 at 12:59

9 Answers

vote up 9 vote down

An abstract class is a generalization concept. It is a class you invent to only use as a base class for inheritance but not to instantiate objects from.

And abstract datatype is not necessarily an OOP concept. It is an older term to describe the concepts of for example Stack and Queue in terms of their functionality, without describing the implementation.

Since you are probably interested in abstract class, a small example:

Suppose you have to make a program to deal with cars and motorbikes. You can define the classes (entities) of Car and Bike and you will see they have much (but not all) functionality in common. It would be a mistake to derive Car from Bike or the other way around. What you need to do is to define a common abstract base-class MotorVehicle and derive both Car and Bike from that class.

abstract class MotorVehicle { ... }
/*concrete*/ class Car : MotorVehicle { ... }
/*concrete*/ class Bike : MotorVehicle { ... }

Note that you would never want to create an object of class MotorVehicle, it would not be 'concrete' (complete). MotorVehicle is only used to build a correct object-model.

link|flag
2  
The first few answers simply discussed the abstract keyword of java, which doesn't define a data type per se. Looking up "abstract data type" I got en.wikipedia.org/wiki/Abstract_data_type. Henk identifies both of these concepts. It is not obvious that the OP's question is well posed. – Ewan Nov 7 at 13:17
vote up 2 vote down

There is a difference between an "abstract data type" and an "abstract class".

An abstract class is one that may not have definitions for all the methods it defines. You therefore cannot directly instantiate an abstract class. You have to create a subclass and then instantiate that.

An abstract data type is a model of a certain kind of data structure e.g. a Stack. A Stack has push() and pop() operations and that have well-defined behaviour.

The abstract data type (ADT) itself refers to this model, not any particular implementation in any particular programming language or paradigm. You could implement a Stack in an object-oriented language, but you could also implement it in a functional programming language.

ADTs allow discussion about the properties of Stacks, Queues etc that hold for all correct implementations of the ADT.

link|flag
vote up 2 vote down

An Abstract Data Type (ADT) is a mathematical model of a type of data. It describes operations that can be performed on the data and the mathematical definition of those operations using equations.

For example, you can model the behaviour of a stack of numbers, perfectly abstractly using operations such as pop(), push(), top() and maybe a constant symbol representing the empty stack.

For example here are some equations that could form part of the definition of a stack of numbers:

pop(empty) = empty  // silently ignores popping an empty stack
pop(push(N,S)) = S  // i.e. pop removes the top element of push(N,S)
top(push(N,S)) = N  // return topmost element of the stack without changing the stack

An abstract data type isn't at all the same thing as a class in an object model - although they bare some similarities.

Here are the names of the important concepts: initial algebra semantics, isomorphism, quotients, congruences

The point of an abstract data type is to understand the behaviour of a whole class of equivalent type representations using equations and some fancy mathematics that demonstrates that each implementation is "isomorphic" - i.e. that both implementations are exactly equivalent as far as the observable behaviour is concerned.

The wikipedia entry on this is pretty good: http://en.wikipedia.org/wiki/Abstract%5Fdata%5Ftype

Here are some good (but very theoretical) course notes that pin down what an ADT is http://www-compsci.swan.ac.uk/~csulrich/ftp/adt/adt.pdf

Although superficially similar to the concept of a "class" in some object-oriented programming languages, a "class" is not an ADT, but a class can be used to implement a specific ADT.

In general the ADT concept is probably more applicable to functional programming than object-oriented programming because not all object-oriented programming languages have classes and ADT-style thinking produces less effective OO designs.

  • Here's a paper that demonstrates the problems of thinking in terms of ADTs in an OO language: http://portal.acm.org/citation.cfm?id=74885
  • Basically the paper shows that the "class" that you use to implement an ADT ends up covered with lots of tiny little methods (that look like the basis of ADT equations) rather than having a few powerful, high-abstraction methods.
link|flag
vote up 2 vote down

In the school they taught me that an ADT is just a group which contains a collection of data, and a set of operations that can be taken over this data. It just refers to the idea, and is not related with any ,language, implementation neither paradigm.

Updated:
so re-reading the question, and accordingly to mi definition, an abstract data type in OOP should be a class abstraction, inherited or not, because it contains data (properties, fields, etc) and operations (methods).

regards

link|flag
vote up 1 vote down

Shortly: abstract means that you can't make objects from the defined class. ex: if you have shape,square and rectangle classes, but you don't want to define any objects from shape so you will mark it as abstract...

after that if the user try to define a new object from shape, he will got compiler error..

link|flag
vote up 1 vote down

It is a type with no concrete implementation i.e. it cannot be instantiated. In other words, you can't do a new on a abstract class.

The purpose of an abstract class is to declare a common set of methods/properties for derived classes. E.g. a musical instrument (abstract) -> piano (concrete).

link|flag
vote up 1 vote down

Abstract type means whose objects does not exist in real world since it does not have physical entity.

It acts as a base class for concrete class which has physical existance.

e.g.

 Shape is an abstract class whereas circle,rectangle are concrete classes.
link|flag
1  
You're getting Abstract Data Type and Abstract Base Class confused here. Abstract Data Type and Abstract Base Class don't abstract the same things. In an Abstract Data Type it means that you're abstracting away from the implmentation of a concrete thing, but in Abstract Base Class it means you've only modelled a generic part of a set of related things. – cartoonfox Nov 7 at 15:02
vote up 1 vote down

I had the same problem until last week.

An abstract class is something that is common or something in general. You can use that class to mould it and extend it in anyway you like.

I can give you a practical example here

Take a class called animal. And it contains functions like eat, sound, move which is general that all animals do. You can extend that class to get specific like cats, dogs etc.

eg.

abstract class animal {

    abstract protected function eat();
    abstract protected function sound();		

}

class dogs extends animal
{
   protected function eat() {
       return "meat";
   }

   public function sound() {
       return "bow wow";
   }
}

hope my answer made sense to you

link|flag
vote up 0 vote down

To clarify some points let's suppose that we use some high-level programming language with strong support of modularity concept.

Well, it's all about abstraction. Abstraction is particularly useful in programming. The main advantage is ability to hide realization details. You hide it inside one modules (so-called "server modules") and provide some public interface for other modules (so-called "client modules"). And now we have three different possibilities:

  • Server module can supply an abstract data structure (ADS) itself. In that case it contains ADS entity itself. The public interface consists of some procedures (and maybe some constants).

Interface of server module in pseudo-code:

module interface StacksADS;

  constant  
    capacity = 10; 

  procedure Clear;  
  procedure NumItems(): integer;  
  procedure Pop(value: Type);  
  procedure Push(value: Type);  

end module interface StackADS;

In the client module we import server module and use data structure directly.

module Client;

  import 
    StackADS;

    ...
    StackADS.Push(...);
    StackADS.Pop(...);
    ...

end module Client;
  • Server module can supply an abstract data type (ADT). In client module we can declare variables to be of that type. Because a module is free to declare more than one variable to be of the exported type, it can have more than one data structure.

Interface in pseudo-code:

module interface StackADT;

  constant
    capacity = 10;

  type
    Stack = record
            end;  

  procedure Clear(s: Stack);  
  procedure NumItems(s: Stack): integer;  
  procedure Pop(s: Stack; value: Type);  
  procedure Push(s: Stack; value: Type);  

end module interface StackADT;

Client module:

module Client;

  import 
    StackADT;

  variable
    myStack: Stack;

    ...
    StackADT.Push(myStack, ...);
    StackADS.Pop(myStack, ...);
    ...

  end module Client;
  • Finally the server module can supply a class. (In object-oriented terminology, the type is called a class, and the variable with that type is called an object.)

Server module interface:

module interface StackObject;  
  constant
    capacity = 10;

  type
    Stack = record
              (s: Stack) Clear;
              (s: Stack) NumItems(): integer;
              (s: Stack) Pop(value: Type);
              (s: Stack) Push(value: Type); 
            end;    

end module interface StackObject;

Once again we export a type. The differences is

  • In the stack ADT, the formal parameter list of every procedure must include a variable s of type Stack. In the stack class, the specification of the data structure s is not included with the other formal parameters following the name of the procedure, but stands alone enclosed in parentheses before the name of the procedure. Using Smalltalk terminology formal parameter before the procedure name is called the receiver.
  • The location of the procedures. In the ADT, the procedures are located outside the Stack record. In the class, the procedures are located within the record. In object-oriented terminology, procedures that have receivers, and are therefore contained within a record type, are called methods.

Client code:

module Client;

  import  
    StackObject;

  variable  
    myStack: StackObject.Stack;

    ...
    myStack.Push(...);
    myStack.Pop(...);
    ...

end module Client;
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.