The C++ Programming Language 4th, Stroustroup 2013, p19, "Avoid 'naked' new and delete"

The C++ Programming Language 4th, Stroustroup 2013, p19, "Use unique_ptr to reference objects"

The C++ Programming Language 4th, Stroustroup 2013, p19, "Use shared_ptr to reference shared objects, that is, objects without a single owner that is responsible for their destruction"

The C++ Programming Language 4th, Stroustroup 2013, p20, "Don't think of C++ as C with few features added. C++ can be used that way, but only suboptimally"

The C++ Programming Language 4th, Stroustroup 2013, p20, "Don't write C in C++; that is often SERIOUSLY suboptimal for both performance and maintenance"

The C++ Programming Language 4th, Stroustroup 2013, p20, "Macro substitution is almost NEVER necessary in C++. Use const, constexpr, enum or enum class"

The C++ Programming Language 4th, Stroustroup 2013, p20, "Minimize the use of arrays and C-style strings. C++ standard-library std::strings, std::arrays, std::vectors can often be used to write simpler and more maintainable code compared to the traditional C style."

The C++ Programming Language 4th, Stroustroup 2013, p20, "Do not assume that somthing laborously written in C style is more efficient than a shorter alternative(ex STL abstractions)"



만들어주실분?