TalkPHP

TalkPHP (http://www.talkphp.com/forums.php)
-   General (http://www.talkphp.com/general/)
-   -   What is the difference between interface, abstract, and ordinary class? (http://www.talkphp.com/general/5236-what-difference-between-interface-abstract-ordinary-class.html)

mrez0 01-25-2010 02:39 AM

What is the difference between interface, abstract, and ordinary class?
 
I'm still confused about the meaning of interface, and abstract classes, and don't know what is the difference between them and ordinary class, and in what situations we use interface or abstract classes.

I read many tutorials about this topic but still confused about their meaning and functionality, and i'd be glad if some one explain their meanings and function by examples.

Regards.

Edit: actually i know what they are and what they do, but i want to know why should i use (abstract or interface) classes instead of just ordinary classes, although they can do the same job well.

Village Idiot 01-26-2010 04:54 AM

Lets start with abstract classes since they are similar to interfaces but easier to understand. I am assuming that you understand inheritance here. Abstract classes are classes which can not be directly used in the program; they can only be inherited. Lets say that you have a game with a few classes "Players" "Objects" and "nonPlayerCharicters". All these classes may have some properties in common, all will have health points, call can be destroyed, and all will be drawn on the screen. What you can do is make a that supports drawing of a model, handling health and things like that. Then you make three classes that have all the dissimilar information that inherit the common class. The common class is quite useful when inherited, but by its self is useless. So a programmer to prevent future developers from wondering if it can be directly used will make it an abstract class. This tells (and forces) everyone that the class was designed to be supplemental.

Interface classes are almost exactly like abstract classes except you do not implement the functions there. This allows you to have variable and function names where the child class sets them. I've never found a use for this before, it is a pathetic attempt at a more complex concept called polymorphism.

mrez0 01-26-2010 04:32 PM

So the use of abstract class is like providing some common characteristics to child classes, but these characteristics can't be used by instantiating objects to this abstract class, as it is not allowed to instantiate an object to abstract class.
[Like the object has no meaning if it was instantiated to an abstract class]

Am i right?

Village Idiot 01-26-2010 05:21 PM

Yes, that is correct.

mrez0 01-26-2010 06:25 PM

thx a lot...


All times are GMT. The time now is 07:07 AM.

Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.1.0