C++ Tips #3: 字符串连接
翻译自Tip of the Week #3: String Concatenation and operator+ vs. StrCat() 本文主题是字符串连接,string::operato...
翻译自Tip of the Week #3: String Concatenation and operator+ vs. StrCat() 本文主题是字符串连接,string::operato...
翻译自:Tip of the Week #1: string_view,如有错误欢迎指正。这个tip的背景是,将字符串作为函数参数进行传递。常规方法将字符串作为函数参数进行传递,容易想到的是以下...
目标:不同类型的对象,放进同一个容器。(下文以数组表示容器)代理类问题:现有不同种类的交通工具类派生层次,如下:class Vehicle { public: virtual do...
This article explains when we should use the qualifier explicit and when we shouldn't.Avoids unde...