Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

No copying here:

  struct person { int age; };
  std::list<person> people;
  people.push_back(person());
  people.back().age = 42;


It copies on the third line prior to C++0x, and unfortunately not everyone can rely on move semantics yet.


Actually in this particular case that "copy" is allowed to be elided even in C++98, as the copy constructor of person produces no side effects. It would be hard to notice if the optimizer is that smart or not either way though, since it will be optimized by redundant load/store elimination even if it was initially generated without optimization.


And that's the other reason of not using C++ sometimes - you just don't know exactly what happens.




Consider applying for YC's Fall 2026 batch! Applications are open till July 27.

Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: