StackOverflow 文档 C++ 教程 基本类型关键字 char16 t char16 t Created: November-22, 2018 Version >= C++ 11 无符号整数类型,与 uint_least16_t 具有相同的大小和对齐,因此足以容纳 UTF-16 代码单元。 const char16_t message[] = u"Hello World\n"; // Chinese for "hello, world\n" std::cout << sizeof(message)/sizeof(char16_t) << "\n"; // prints 7 char32 tChar