What are the often misunderstood concepts in c++?
|
16
|
|
|
|
|
|
|
|||
|
|
|
|
Many confuse But |
|||
|
|
|
|
C++ or C/C++? I would say for both the most misunderstood parts are memory management and pointers. The former because people don't free appropriately (too early or not at all!) and the latter because a lot of people just don't "get" pointers (either in the pass by reference "guise" or in general in something like a linked list). |
|||
|
|
|
|
|
|||
|
|
|
|
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... |
|||
|
|
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. |
|||
