vote up 0 vote down star

As i know that, in OOP we have to declare anything i.e variable, function.. etc inside the class like in java, but in c++ we can declare outside the class also...

is it the reason that, c++ is not fully OOP. or anything else.. anyone help me please...........

flag
2  
it is considered three paradigm language here, en.wikipedia.org/wiki/… – idursun Jun 16 at 7:55
6  
By your reasoning, Java is not fully OOP either. There's nothing even remotely object-y about an int. And that main() being inside a class is just black-magic trickery. If you really want pure OO, just head on over to the Smalltalk ghetto :-) – paxdiablo Jun 16 at 8:14
1  
It is the developers choice. C++ can be pure OO if desired. But if OO does not cover all your needs then you use the other paradigms supported by C++. – Martin York Jun 16 at 9:11

9 Answers

vote up 0 vote down

The best answer I can offer is a link to B. Stroustrup's paper Why C++ is not just an Object Oriented Programming Language

link|flag
vote up 0 vote down

Even though the question is somewhat ugly phrased I'm not really satisfied with all the answers provdided yet. I preffer to think of languages as "supporting a paradigm" and not "being in a paradigm". So, when does a language support a paradigm? When it is easy to write code that satisifies the requirements of the paradigm. How one comes to this conclusion? Consider the style linux filesystems are implemented. It is C-Code that clearly has OO properties. So, would you not consider this code to be OOP because C is not a OOP-language? I don't think so. (I guess some people will rightfully disagree as this seems to be amtter of opinion.) What does this imply for C++? Well, C++ has a lot of facilities for making it easier to program in a OO-Style, but it also provides you with a lot of means to rape the paradigm and write code that looks OO (because you use classes, inheritance private variables) but completly violates some other OO-principles (e.g. single responsibility, open-closed, uniform access).

I would conclude that C++ supports the OO-paradigm to some extent but is clearly inferior to some of the modern OO languages.

link|flag
OOP modelling and OOP languages are not the same thing, as the C example demonstrates. Do you have a reference for those OO principles? I could only find the ones listed above. People add features "in the spirit of OO" all the time, but that can also be to create an unique selling point for their own so perfect language. – Marco van de Voort Jun 16 at 8:46
Personally, if I talk about "OO principles" I mean the ones descriped in "Object-Oriented- Software Construction" by Bertrand Meyer. stackoverflow.com/questions/399656/… gives an overview as well. – pmr Jun 16 at 21:30
vote up 3 vote down

not even java is a full OOP language.
in real OOP languages everything is an object, conditionals, loops, etc.

link|flag
vote up 0 vote down

One of the reason C++ is not fully OOP is the requirement of backward compatibility with a lot of C code. Built in types are not Objects in C++ as it is less efficient if they were. Remember, C++ first target audience were existing C programmers and efficiency was (is) a great concern.

However, C++ supports all the important features of OOP.

Related Link : www.research.att.com/~bs/oopsla.pdf

link|flag
One could as well say Java isn't fully OOP because it supports valuetypes. – Marco van de Voort Jun 16 at 8:03
If fully OOP == "everything should be an object", then yes java is also not fully OOP. In my opinion, everything should be an Object is a loose way to define OOP. – Aditya Sehgal Jun 16 at 8:10
Note that the valuetype argument is just one I know from similar internal debates in our UUG. Not necessarily my opinion. IMHO the problem is in the question, not the answer – Marco van de Voort Jun 16 at 8:14
Exactly. C++ satisfies enough OO Principles to qualify as fully OOP. I alaways figure that the valuetype argument is just a technicality or an implementation decision. – Aditya Sehgal Jun 16 at 8:18
1  
It keeps the Java and C# people of your neck :-) – Marco van de Voort Jun 16 at 8:20
vote up 7 vote down

Object-Oriented Programming is not definition of the language, it's definition of the programming, a program. I.e. one program in C++ can be OOP, and other can be not OOP.

What you can say is that C++ fully supports means of programming in OOP paradigm.

link|flag
vote up 0 vote down

The main() function is not inside a class, so for this reason, one could argue that C++ is not fully OOP.

link|flag
1  
Except that C++ does not require main to be a function. – Neil Butterworth Jun 16 at 7:56
@Neil: Then how else can you declare main()? – the_drow Jun 16 at 8:16
You can't declare main. The compiler is permitted to implement it as it sees fit. You are also (unlike in C) not permitted to call it, because it may not be a function. – Neil Butterworth Jun 16 at 8:33
vote up 3 vote down

In C++ you don't HAVE to code using OOP, you can choose not to use it. Having said that, it's "fully OOP", OOP is just just not a requirement.

link|flag
vote up 10 vote down

Huh? C++ is a hybrid, multi-paradigm language. It is certainly not a "pure" object-oriented language, where "everything is an object" holds true. C++ supports classes, objects, encapsulation, and so on, but since it's also (more or less) backwards-compatible with a lot of C code, it cannot be "fully object-oriented".

link|flag
vote up 5 vote down

Define fully OOP? There are as many opinions as people probably

Note as far as purity goes, IIRC all languages with valuetypes are not "pure" in the strict sense. No, boxing doesn't count.

Over the years, in discussion I've tried to go back to the core OOP features:

  • identity
  • Classification
  • polymorphism (not inheritance, since some OOP have no inheritance)
  • encapsulation

So if you can tell if two classes are not the same class (identity), you can make the classic "duck quacks" and "dog barks" example (to demonstrate inheritance/polymorphism and classification) and you can hide fields, you are pretty much there.

Applying it to all the languages is more difficult though. While I do get functional programming roughly, I'm not trained enough in the their near infinite jargon to judge all those functional-oop-imperative hybrids that are springing up,

link|flag
7  
I'd even guess opinions > people. ;) – Adrian Grigore Jun 16 at 7:53
1  
Quite possibly... mine has changed a bit over the years :) – workmad3 Jun 16 at 7:54
@Adrian: especially if some of them have more than one user :) – Daniel Daranas Jun 16 at 8:20

Your Answer

Get an OpenID
or

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