What are the often misunderstood concepts in c++?
|
16
|
|
|
|
|
|
C++ is not C with classes! And there is no language called C/C++. Everything goes downhill from there. |
||||
|
|
|
Many confuse But |
|||
|
|
|
|
|
|||
|
|
|
|
I know this is old question but I thought object slicing / failure of polymorphism with objects on the stack worth mentioning. If I do not use C++ for six months, this one always comes out and bites me when I use the language again.
|
|||
|
|
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. |
|||
|
|
|
|
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()).. |
|||
|
|
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 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've seen it that programmers argue that they can access members at positions greater than what |
|||
|
|
|
|
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. |
|||
|
|
|
|
C structs VS C++ structs is often misunderstood. |
|||
|
|
Why is A[b] the same thing as b[A]? Ok, not really a COMMON question, but it came up in a class I was teaching once... |
|||
|
|
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 |
||||
|
|
|
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 |
||||
|
|
|
C++ is a multi-paradigm language. Many people associate C++ strictly with OOP. |
|||
|
|
|
|
Arrays are not pointers They are different. So |
|||
|
|
|
|
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)
|
||||
|
|
|
|
|||
|
|
|
|
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. Skizz |
||||||||
|
|
|
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. |
|||
|
|
|
|||
|
|
C++ is not C with string and vector! |
|||
|
|
|
|||
|
|
A big one is that the languages are not 100% syntactically compatible. C++ is fully link compatible with C, but some C++ style syntax will generate a complier error in C. Some compilers aren't picky and don't follow the C standard to the letter. The basics of these need to be learned when moving from one language to the other. Note I haven't read the latest C standard, but last I knew this was true. |
|||
|
|
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. |
||||||||
|
|
|
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. |
||||
|
|
|
There are a few things that people seem to be constantly confused by or have no idea about:
|
|||
|
|
The difference between assignment and initialisation:
Initialisation always uses constructors, assignment always uses operator= |
||||
|
|
|
Very nice resource I can't get tired to promote - C++ Frequently Questioned Answers |
||||||||||||
|
|
|
Here is an important concept in C++ that is often forgotten:
|
||||
|
