大约有 2,100 项符合查询结果(耗时:0.0061秒) [XML]

https://www.tsingfun.com/it/cpp/1964.html 

c/c++如何获取CPU的序列号? - C/C++ - 清泛网 - 专注C/C++及内核技术

c/c++如何获取CPU的序列号?获取CPU序列表的完整实例代码如下:#include "stdafx.h"#include <afx.h>CString GetCpuSerial(){unsigned long st1 = 0;un...获取CPU序列表的完整实例代码如下: #include "stdafx.h" #include <afx.h> CString GetCpuSerial() { unsigne...
https://www.tsingfun.com/it/cpp/1966.html 

[源码实例] c/c++获取网卡mac地址 - C/C++ - 清泛网 - 专注C/C++及内核技术

[源码实例] c/c++获取网卡mac地址代码如下:#include "stdafx.h"#include <afx.h>#include < nb30.h > #pragma comment(lib,"netapi32.lib")typedef struct _ASTAT...代码如下: #include "stdafx.h" #include <afx.h> #include < nb30.h > #pragma comment(lib,"netapi32.lib") typedef s...
https://www.tsingfun.com/it/cpp/2041.html 

error C2804:binary \'operator +\' has too many parameters - C/C++ - 清泛网 - 专注C/C++及内核技术

... too many parameterserror C2804:binary 'operator +' has too many parameters代码如下:#include <iostream> #include <string> clas...error C2804:binary 'operator +' has too many parameters 代码如下: #include <iostream> #include <string> class Sales_item { // private...
https://www.tsingfun.com/it/cpp/2045.html 

MiniDumpWriteDump 记录dmp文件的简单实例(附调试方法) - C/C++ - 清泛网...

MiniDumpWriteDump 记录dmp文件的简单实例(附调试方法)实例代码如下:#include <DbgHelp.h>#pragma comment(lib, "Dbghelp.lib")LONG WINAPI ExceptionHandler(LPEXCEPTION_POINTERS pExce...实例代码如下: #include <DbgHelp.h> #pragma comment(lib, "Dbghelp.lib") LONG WINAPI E...
https://www.tsingfun.com/it/cpp/2050.html 

在vc中使用xtremetoolkit界面库-----安装及环境配置 - C/C++ - 清泛网 - 专...

...是有个“ xtremetoolkit的使用.txt”文件吗,把编译时报错的代码的地方用这个文件里面“ XTToolkit调试一则”前面的一部分代码替换就可以了。这还是那时候的笔记,照上面的方法改过来。 首先我们生成一个debug环境下共享的.dll库...
https://www.tsingfun.com/it/cpp/2053.html 

C++ 获得当前执行文件的路径 - C/C++ - 清泛网 - 专注C/C++及内核技术

C++ 获得当前执行文件的路径代码如下:TCHAR szPath[_MAX_PATH] = {0};GetModuleFileName(NULL, szPath, MAX_PATH);PathRemoveFileSpec( szPath ); 去掉文件...代码如下: TCHAR szPath[_MAX_PATH] = {0}; GetModuleFileName(NULL, szPath, MAX_PATH); PathRemoveFileSpec( szPath ); //...
https://www.tsingfun.com/it/cpp/2060.html 

deque iterator not dereferencable 问题 - C/C++ - 清泛网 - 专注C/C++及内核技术

...同一个容器,也会导致出现这种情况。 解决办法:关键代码段不建议用互斥内核对象是因为关键代码段是用户层的,调用很快,互斥内核对象调用需要从用户态转入内核态!时间很长! deque iterator
https://www.tsingfun.com/it/cpp/2067.html 

[工程源码实例] C++ ADO 读写Excel源码及注意点 - C/C++ - 清泛网 - 专注C/C++及内核技术

...excel-ado.zip运行结果截图:生成的Excel截图:主要代码片段: 导入Excel COM支持。。。不过程序编译后即使客户机没...工程源码下载:excel-ado.zip 运行结果截图: 生成的Excel截图: 主要代码片段: //导入E...
https://www.tsingfun.com/it/cpp/2090.html 

error C2664: “find_char”: 不能将参数 1 从“const char [14]”转换为“...

...: 不能将参数 1 从“const char [14]”转换为“std::string &出错代码:#include <iostream>#include <string>using std::cout;using std::endl;using std::string; const引用形参举例 非const...出错代码: #include <iostream> #include <string> using std::cout; using std::endl...
https://www.tsingfun.com/it/cpp/2092.html 

error C2440: “return”: 无法从“const Screen”转换为“Screen &” - C/...

...从“const Screen”转换为“Screen &”转换丢失限定符。出错代码(例子来自c++ primer 4th):Screen& Screen::display(std::ostream& os) const{ os << contents...转换丢失限定符。 出错代码(例子来自c++ primer 4th): Screen& Screen::display(std::ostream& o...