12
用户定义的文字为C ++添加了哪些新功能?
C ++ 11台引入了用户定义的文字,这将允许基于现有字面引入新文本语法的(int,hex,string,float),使得任何类型的将能够具有字介绍。 例子: // imaginary numbers std::complex<long double> operator "" _i(long double d) // cooked form { return std::complex<long double>(0, d); } auto val = 3.14_i; // val = complex<long double>(0, 3.14) // binary values int operator "" _B(const char*); // raw form int answer = 101010_B; // answer …