What are the often misunderstood concepts in c++?
|
closed as not constructive by Antony Vennard, Tim Post♦ Apr 28 '12 at 16:14
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
C++ is not C with classes! And there is no language called C/C++. Everything goes downhill from there. |
|||||||||
|
|
That C++ does have automatic resource management. (Most people who claim that C++ does not have memory management try to use new and delete way too much, not realising that if they allowed C++ to manage the resource themselves, the task gets much easier). Example: (Made with a made up API because I do not have time to check the docs now)
|
|||||||||||||
|
|
Free functions are not bad just because they are not within a class C++ is not an OOP language alone, but builds upon a whole stack of techniques. I've heard it many times when people say free functions (those in namespaces and global namespace) are a "relict of C times" and should be avoided. Quite the opposite is true. Free functions allow to decouple functions from specific classes and allow reuse of functionality. It's also recommended to use free functions instead of member functions if the function don't need access to implementation details - because this will eliminate cascading changes when one changes the implementation of a class among other advantages. This is also reflected in the language: The range-based for loop in |
|||||||||||||
|
|
The difference between assignment and initialisation:
Initialisation always uses constructors, assignment always uses operator= |
|||||
|
|
In decreasing order:
Interestingly not many people know the full details of virtual functions, but still seem to be ok with getting work done. |
|||||
|
|
The most pernicious concept I've seen is that it should be treated as C with some addons. In fact, with modern C++ systems, it should be treated as a different language, and most of the C++-bashing I see is based on the "C with add-ons" model. To mention some issues: While you probably need to know the difference between In fact, you should be using a RAII means you don't generally have to write clean-up code. Clean-up code is bad style, and destroys conceptual locality. As a bonus, using RAII (including smart pointers) gives you a lot of basic exception safety for free. Overall, it's much better than garbage collection in some ways. In general, class data members shouldn't be directly visible, either by being And the big one: there is no such language as C/C++. It is possible to write programs that can compile properly under either language, but such programs are not good C++ and are not normally good C. The languages have been diverging since Stroustrup started working on "C with Classes", and are less similar now than ever. Using "C/C++" as a language name is prima facie evidence that the user doesn't know what he or she is talking about. C++, properly used, is no more like C than Java or C# are. |
||||
|
|
|
The overuse of inheritance unrelated to polymorphism. Most of the time, unless you really do use runtime polymorphism, composition or static polymorphism (i.e., templates) is better. |
|||||||||
|
|
The static keyword which can mean one of three distinct things depending on where it is used.
|
||||
|
|
|
Given this:
what value is X? The answer you often hear is dependant on the level of understanding of the specification.
It's unfortunate that the standard uses 'byte' to refer to a unit of memory since many programmers think of 'byte' as being eight bits. |
|||||||||
|
|
Here is an important concept in C++ that is often forgotten:
|
|||||||||
|
|
Arrays are not pointers They are different. So |
||||
|
|
|
Here are some:
ACKNOWLEDGEMENT: Thanks for correcting my mistake, spoulson. EDIT: Here are more:
|
||||
|
|
|
a classic among beginners to c++ from c: confuse EDIT: another classic failure among all levels of experience when using C API:
instead of:
it happens to me every week. You could use streams, but sometimes you have to deal with printf-like APIs. |
|||||
|
|
Pointers. Dereferencing the pointers. Through either Address of using Functions that take params by reference by specifing a Pointer to pointers to pointers |
||||
|
|
|
There are a few things that people seem to be constantly confused by or have no idea about:
|
||||
|
|
|
||||
|
|
|
Headers and implementation files This is also a concept misunderstood by many. Questions like what goes into header files and why it causes link errors if function definitions appear multiple times in a program on the one side but not when class definitions appear multiple times on the other side. Very similar to those questions is why it is important to have header guards. |
||||
|
|
|
If a function accepts a pointer to a pointer, I've seen that the concept of a void pointer is frequently confused. It's believed that if you have a pointer, you use a It's the special property that a |
||||
|
|
|
Memory Alignment. |
||||
|
|
|
C++ is not a typical object oriented language. Don't believe me? look at the STL, way more templates than objects. It's almost impossible to use Java/C# ways of writing object oriented code; it simply doesn't work.
If you insist on doing oop with pointers, you'll usually have large (gigantic!) classes, with clearly defined ownership relationships between objects to avoid memory leaks. And then even if you do that, you're already too far from the Java/C# idiom of oop.
Although from a purist point of view (e.g. Alan Kay), even Java and C# fall short of true oop |
|||||
|
|
A pointer is an iterator, but an iterator is not always a pointer This is also an often misunderstood concept. A pointer to an object is a random access iterator: It can be incremented/decremented by an arbitrary amount of elements and can be read and written. However, an iterator class that has operator overloads doing that fulfill those requirements too. So it is also an iterator but is of course not a pointer. I remember one of my past C++ teachers was teaching (wrongly) that you get a pointer to an element of a vector if you do |
||||
|
|
|
I think the most misunderstood concept about C++ is why it exists and what its purpose is. Its often under fire from above (Java, C# etc.) and from below (C). C++ has the ability to operate close to the machine to deal with computational complexity and abstraction mechanisms to manage domain complexity. |
||||
|
|
|
C++ is not C with string and vector! |
||||
|
|
|
C structs VS C++ structs is often misunderstood. |
||||
|
|
|
I've seen it that programmers argue that they can access members at positions greater than what |
||||
|
|
|
Many confuse But |
||||
|
|
|
Hehe, this is a silly reply: the most misunderstood thing in C++ programming is the error messages from g++ when template classes fail to compile! |
||||
|
|
|
||||
|
|
|
I still don't get why vector doesn't have a pop_front and the fact that I can't sort(list.begin(), list.end()).. |
||||
|
|