Featured image of post Qt lconvert 工具介绍

Qt lconvert 工具介绍

lconvert 是 Qt 的 Linguist 工具链的一部分。 它可以用于转换和过滤翻译数据文件的独立工具。

Featured image of post Qt Linguist 界面介绍

Qt Linguist 界面介绍

Qt Linguist用于翻译Qt应用程序中的字符串的工具,通常用于解决多语言国际化问题。

Featured image of post C++ 打印enum class枚举类

C++ 打印enum class枚举类

在 C++11中,由于枚举类(enum class)无法通过 std::cout 标准流打印,为了解决这个问题,提供了三种解决方案。

Featured image of post C++ POD类型

C++ POD类型

C++ POD 是 Plain Old Data 的缩写,指的是可以通过简单内存复制进行复制和传输的数据类型。