what is an abstract data type in object oriented programming? I gone through wiki.But i dint get cleared.Please make me clear
|
1
|
|
|
|
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
Note that you would never want to create an object of class |
||||
|
|
|
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. |
|||
|
|
|
|
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:
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.
|
|||
|
|
|
|
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: regards |
||
|
|
|
|
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.. |
||
|
|
|
|
It is a type with no concrete implementation i.e. it cannot be instantiated. In other words, you can't do a 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). |
||
|
|
|
|
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.
|
||||
|
|
|
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.
hope my answer made sense to you |
||
|
|
|
|
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:
Interface of server module in pseudo-code:
In the client module we import server module and use data structure directly.
Interface in pseudo-code:
Client module:
Server module interface:
Once again we export a type. The differences is
Client code:
|
|||
|
|

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