排序
C/C++ Visual Studio x86/x64/Any CPU编译区别
C/C++ Visual Studio x86/x64/Any CPU编译区别 - Visual Studio 使用 x86 平台编译出来的 exe (可执行文件)或 dll (动态链接库)都是32位的; Visual Studio 使用 x64 平台编译出来的 exe (可执...
C/C++ Debug 和 Release 区别
C/C++ Debug 和 Release 区别 - Debug 和 Release 只是 Visual Studio 或者其他 IDE 的两个编译的选项而已,是编译器所要进行工作的一系列指令,它们只是编译指令的集合的名称。 Debug 版本包括...
C/C++ CString 和 char* 相互转换
C/C++ CString 和 char* 相互转换,char转CString,CString转char,CString和char,CString和char相互转换,猿说编程,
C/C++ QT error: dependent ‘xxx’ does not exist.
C/C++ QT error: dependent 'xxx' does not exist. - 在编写 QT 程序的时候,我不需要资源,于是通过 QtCreator 工程左边栏目,右键删除,之后编译出现:error qt dependant doesn not exist 解...
C/C++ unicode 转 utf8
C/C++ unicode 转 utf8 - 关于 char 和 wchar 相互转换,文章《 char 和 wchar_t 相互转换》有详细介绍和使用案例,默认 wchar 为 unicode 编码,如果需要将 unicode 编码转为 utf-8 编码如何完...
C/C++ error C2027: 使用了未定义类型 std::basic_ifstream<_Elem,_Traits>
C/C++ error C2027: 使用了未定义类型 std::basic_ifstream - 添加头文件 即可解决 error C2027: 使用了未定义类型std::basic_ifstream 问题;
Xcode – Xcode13 The Legacy Build System will be removed in a future release
Xcode – Xcode13 The Legacy Build System will be removed in a future release - The Legacy Build System will be removed in a future release. You can configure the selected build sys...
C/C++ error:unknown type name ‘bool’
C/C++ error:unknown type name 'bool' - 在 C 语言标准 (C89) 没有定义布尔类型,所以会报错。而 C99 提供了一个头文件 定义了 bool , true 代表 1 ,false 代表 0 。只要导入 stdbool.h ,就...
C/C++ void* 和 bool 转换
C/C++ void* 和 bool 转换 - 在文章 《数据类型/变量类型》 中有做介绍;int 和 float 转换请参考 《int 和 float 相互转换》,void* 和 bool 转换如下:
C/C++ void* 和 int 转换
C/C++ void* 和 int 转换 - 在文章 《数据类型/变量类型》 中有做介绍, int 属于整数;int 和 float 转换请参考 《int 和 float 相互转换》,void* 和 int 转换如下: