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 的缩写,指的是可以通过简单内存复制进行复制和传输的数据类型。

Featured image of post C++ 智能指针实现之shared_ptr

C++ 智能指针实现之shared_ptr

智能指针本质上就是利用 RAII 资源管理功能,本文介绍实现 C++中智能指针的 shared_ptr。