I have been hearing a lot about Ruby and possibly even Javascript being "true" object oriented languages as opposed to C++ and C# which are class oriented (or template based) languages. What is meant by true OO and what are the advantages of this over the class/template approach?
|
feedback
|
|
It's a subjective term used to promote languages. I've seen it used to say C# and Java are true object oriented languages in comparison to C++ because everything must be in a class (no global functions or variables) and all objects inherit from one Object class. For Ruby, it may refers to how Ruby treats everything as an object, so you could write C++ on the other hand is advertised as a multi-paradigm language that allows you to use several approaches such as object-oriented, generic and procedural programming. It doesn't stick to one paradigm. But yeah, it's just a subjective term that could mean anything. Generally it refers to whether the language puts more emphasis on objects as opposed to other language elements like functions, templates, etc. Wikipedia's article on SmallTalk calls it a 'pure' object oriented language, and the description applies to Ruby as well:
| |||||
feedback
|
|
The C++ issue is the following. C++ classes exist only in the source syntax. There's no run-time class object with attributes and methods. In Python, everything's an object. An object's class is another object, with it's own methods and attributes. This is true of the smalltalk environment, also, which is a kind of benchmark of object-orientation. I think the "true" object-orientation refers to those environments where everything's an object. [Java falls short of this because it has primitive types.] | |||
|
feedback
|
|
I think it may be referring to Prototype Based Programming, a Programming Paradigm in which:
See also Ruby singleton methods. | ||||
|
feedback
|
|
The C++ issue is the following. C++ classes exist only in the source syntax. There's no run-time class object with attributes and methods. Of course, by that rule there is no such thing as object oriented programming on a conventional machine architecture, since there is no run time class object with attributes and methods at the machine-code level. (Or, at least, there isn't except for specialized architectures like the old System/38 or AS/400.) What "object oriented" means was settled long ago as being three things: abstract data types, with inheritance, and polymorphism. (The Wikipedia article linked confuses the properties of OO with the benefits to some extent. But the important distinction is between OO and "object based" systems.) Generally, what "X isn't really object oriented, unlike Y" really means is "I'm trying to sell you Y." | |||||||||
feedback
|
|
A "True" or "Pure" object oriented language usually refers to languages in which everything is a first-class object including primitive types. In C++ and Java for example, the primitive types int, char, etc. are not objects. In Ruby, for example, everything is a object. Sometimes additional criteria are implied with the definition depending on who you are talking to. | ||||
|
feedback
|
|
Another interpretation of that term "true object orientation" is, that you can take some language that doesn't support OOP on its own, and stick an OOP way of doing things on-top of it. For example you can model encapsulation in C like
Techniques for implementing inheritance and polymorphism has been in use a long time. One example is the Now, while you can program in an object oriented manner, C doesn't support object orientation, but merely allows you to simulate it up to some degree. So you don't have true object orientation. Looking at C++/Java/C#, you have support for all these kinds of things like inheritance/data encapsulation and stuff first hand. | ||||
|
feedback
|
|
The term "true object-orientation" has the same meaning as the unadorned term "object-orientation". When adding the qualifier "true" to "the subject at hand", one is attempting to alert the reader to the presence, within the current universe of discourse, of one or more "incomplete imitations" of said subject, which are being used interchangeably, but which, compared to the subject, lack one or more properties of significance to the discourse. Such use should normally be followed by a description of the subject's properties, or a description of properties missing in the "imitation subject", or both; thereby leading the reader to understand, or at least contemplate, the distinction(s). Object-orientation, as used by the person who coined the phrase, seems to include the following properties:
Practice and experience have taught,
| ||||
|
feedback
|
|
Not sure about the distinction you're after from the examples provided. But I do know what it isn't! When OO is bolted on to a language as an afterthought, e.g. Perl OO. | |||
|
feedback
|