大约有 1,190 项符合查询结果(耗时:0.0092秒) [XML]

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

xtree(1796): warning C4800: “int”: 将值强制为布尔值“true”或“false...

...crosoft Visual Studio 11.0\VC\include\xtree(1775): 参见对正在编译的函数 模板 实例化“std::pair<_Ty1,_Ty2> std::_Tree<_Traits>::_Insert_nohint<std::pair<const _Kty,_Ty>&,_Nodety>(bool,_Valty,_Nodety)”的引用 1> with 1> [ 1> _Ty1=std::_Tree_iterato...
https://www.tsingfun.com/it/os_kernel/658.html 

手握利器,直面“蓝脸”! ——使用WinDbg抗击系统崩溃 - 操作系统(内核) - ...

...系统检测到引发崩溃的致命错误时,Windows自己执行崩溃函数“KeBugCheckEx”。该函数接受一个停止代码(STOP Code,也称为错误检查码“Bug Check Code”),以及四个根据停止代码来解释的参数(下文中会有图例)。在调用KeBugCheckEx之后,...
https://www.tsingfun.com/it/cpp/653.html 

VS2005混合编译ARM汇编代码 - C/C++ - 清泛网 - 专注C/C++及内核技术

...半! 仔细的朋友可能也发现了,Larry Bank调用armtest.asm中函数的文件MAIN.C在VS2005编译时调用的是C编译器,但是现在很多项目工程会以C++代码编写(*.cpp),在VS2005中会用C++编译器Compile。 如果不注意这点的话,就会出现下面的结...
https://www.tsingfun.com/it/te... 

Android中Java和JavaScript交互 - 更多技术 - 清泛网 - 专注C/C++及内核技术

...“javascript:methodName(parameterValues)”) 调用js无参无返回值函数 String call = "javascript:sayHello()"; webView.loadUrl(call); 调用js有参无返回值函数 注意对于字符串作为参数值需要进行转义双引号。 String call = "javascript:alertMessage(\"" ...
https://www.tsingfun.com/it/cp... 

[since C++11] std::array的使用 - C/C++ - 清泛网 - 专注C/C++及内核技术

...array的固定大小。 array的接口 constructors 构造函数 说明 arrary<T, N> c 默认构造函数,N个元素全部使用“默认初始化行为”来构造。 arrary<T, N> c(other) 拷贝构造函数,拷贝所有other的元素到c来构造。...
https://www.tsingfun.com/it/cpp/1280.html 

C++11 tuple 这一篇就够了 - C/C++ - 清泛网 - 专注C/C++及内核技术

...et<>()来访问元组的元素。通过下面这段程序来认识这两个函数的用法: #include <iostream> #include <tuple> #include <functional> int main() { auto t1 = std::make_tuple(10, "Test", 3.14); std::cout << "The value of t1 is " << "(" << std::get<0...
https://www.tsingfun.com/it/cpp/1490.html 

error LNK2019: 无法解析的外部符号 __imp__PlaySoundW@12,该符号在函数 \...

...or LNK2019: 无法解析的外部符号 __imp__PlaySoundW@12,该符号在函数 "long __stdcall WndProc(struct HWND__ *,unsigned int,unsigned int,long)" (?WndProc@@YGJPAUHWND__@@IIJ@Z) 中被引用#include <mmsystem.h>#pragma comment(lib, "WINMM.LIB") #include <mmsystem.h> #pragma comment...
https://www.tsingfun.com/it/cpp/1493.html 

SHFileOperation 这个API函数怎么用起来结果飘忽不定? - C/C++ - 清泛网 -...

SHFileOperation 这个API函数怎么用起来结果飘忽不定?SHFileOperation方法有时不起作用,用起来结果飘忽不定,路径末尾加上' 0'也一样,笔者亲测,删除有时成功有时失败。解决:改用C++...SHFileOperation方法有时不起作用,用起来结果...
https://www.tsingfun.com/it/cpp/1499.html 

error LNK2019: 无法解析的外部符号 _GetFileVersionInfoSizeW@8,该符号在...

...2019: 无法解析的外部符号 _GetFileVersionInfoSizeW@8,该符号在函数 _wmain 中被引用GetFileVersionInfoSize build时出现link2019 链接错误:#pragma comment(lib, "version")解决。GetFileVersionInfoSize build时出现link2019 链接错误: #pragma comment(lib, "version") ...
https://www.tsingfun.com/it/cpp/1518.html 

error LNK2019: 无法解析的外部符号 _Netbios@4,该符号在函数 中被引用 - C...

error LNK2019: 无法解析的外部符号 _Netbios@4,该符号在函数 中被引用解决方法如下:Cpp文件include语句之后加上如下代码:#pragma comment(lib,"netapi32.lib")解决方法如下: Cpp文件include语句之后加上如下代码: #pragma comment(lib,"netapi32.lib") ...