Python/C++教程 第42页
C/C++ error LNK2005:

C/C++ error LNK2005:”XXX已经在 XXX.obj 中定义

C/C++ error LNK2005:'XXX已经在 XXX.obj 中定义 - 1.C/C++ 中,当头文件定义变量时,可能会发生 error LNK2005。 例如,如果在项目中的多个源文件中包括此头文件,则会导致错误 方案一:在头文...
猿说编程的头像-猿说编程钻石会员猿说编程3年前
016630
C/C++ 使用 dumpbin 查看静态库和动态库是32位还是64位-猿说编程

C/C++ 使用 dumpbin 查看静态库和动态库是32位还是64位

C/C++ 使用 dumpbin 查看静态库和动态库是32位还是64位 - dumpbin.exe 为 Microsoft COFF 二进制文件转换器,它显示有关通用对象文件格式 (COFF) 二进制文件的信息,如果想查看其中这些文件或库...
猿说编程的头像-猿说编程钻石会员猿说编程3年前
016441
C/C++ Visual Studio 中 dumpbin 工具使用-猿说编程

C/C++ Visual Studio 中 dumpbin 工具使用

Visual Studio 中 dumpbin 工具使用 - dumpbin.exe 为 Microsoft COFF 二进制文件转换器,它显示有关通用对象文件格式 (COFF) 二进制文件的信息,如果想查看其中这些文件或库包含了哪些函数以及...
猿说编程的头像-猿说编程钻石会员猿说编程3年前
031391
C/C++ std::string 使用介绍-猿说编程

C/C++ std::string 使用介绍

C/C++ std::string 使用介绍 一.string类的构造函数 二.string类的字符操作 三.string的特性描述 四.string的赋值 五.string的连接 六.string的比较 七.string的交换 八.string类的查找函数 九....
猿说编程的头像-猿说编程钻石会员猿说编程3年前
013070
C/C++ CString std::string string 区别-猿说编程

C/C++ CString std::string string 区别

C/C++ CString std::string string 区别 - CString 是 MFC 的类库,标准 C++ 是不能直接使用的,用 MFC 开发时可以直接使用,MFC 也可以使用 string ; std::string 和 string 两个是 C++ 的标...
猿说编程的头像-猿说编程钻石会员猿说编程3年前
011621
C/C++ std::string 字符串分割-猿说编程

C/C++ std::string 字符串分割

C/C++ std::string 字符串分割 - C++中使用 std::string 指定的单个字符或者字符串进行分割,并返回一个数组,示例代码如下:
猿说编程的头像-猿说编程钻石会员猿说编程3年前
014881
C/C++ error C4146: 一元负运算符应用于无符号类型,结果仍为无符号类型-猿说编程

C/C++ error C4146: 一元负运算符应用于无符号类型,结果仍为无符号类型

C/C++ error C4146: 一元负运算符应用于无符号类型,结果仍为无符号类型 - 由于编译器SDL安全检查认为这一操作(通常是为无符号整形取负的操作)无效而产生的。
猿说编程的头像-猿说编程钻石会员猿说编程3年前
026890
C/C++ error C4996: 'getch': The POSIX name for this item is deprecated. Instead, use the ISO C++ conf-猿说编程

C/C++ error C4996: ‘getch’: The POSIX name for this item is deprecated. Instead, use the ISO C++ conf

C/C++ error C4996: 'getch': The POSIX name for this item is deprecated. Instead, use the ISO C++ conf - 这个问题在 Visual Studio 2012 之前是不会当成错误的,目前这个问题有两个解决方...
猿说编程的头像-猿说编程钻石会员猿说编程3年前
09190
Xcode - Xcode 提示 there is no memory profiling because NSZombieEnabled is enabled-猿说编程

Xcode – Xcode 提示 there is no memory profiling because NSZombieEnabled is enabled

Xcode - Xcode如何解决Memory不显示内存使用的问题 - Xcode 显示 there is no memory profiling because NSZombieEnabled is enabled,打开 Diagnostics 之后找到 Memory Management,可以查看...
猿说编程的头像-猿说编程钻石会员猿说编程3年前
027990
AVFoundation - 指定时间截取音视频-猿说编程

AVFoundation – 指定时间截取音视频

AVFoundation - 指定时间截取音视频 - 为了避免导出失败,解决方案是提取视频资源 AVURLAsset 音频轨道和视频轨道,重新构建 AVComposition ,然后在使用 AVAssetExportSession 导出; AVMutable...
猿说编程的头像-猿说编程钻石会员猿说编程4年前
010780