8

C++. Damn the pointers. It's because I learned Java before C++ and the memory management in C++. I don't get it ever, the object creation, memory allocation, deallocation and everything

Comments
  • 2
    It shouldn't really make a big difference if you know Java. Just like objects in Java are pointers to memory, same in C++, but in a more explicit way, and you can do it for scalars as well.

    That's empowering.
  • 0
    Smart pointers
  • 1
    Wait, are you saying c++ is your candidate for worst technology you've worked with?
  • 0
    Pro-tip: don't allocate memory explicitly
Add Comment