大约有 8,000 项符合查询结果(耗时:0.0141秒) [XML]

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

xpath路径表达式笔记 - C/C++ - 清泛网 - 专注C/C++内核技术

... xpath可以用来选择这7种节点。不过,下面的笔记只涉最常用的第一种element(元素节点),因此可以将下文中的节点和元素视为同义词。 一、xpath表达式的基本格式 xpath通过"路径表达式"(Path Expression)来选择节点。在形...
https://www.tsingfun.com/it/cpp/1482.html 

C++的公有继承、保护继承、私有继承有什么区别? - C/C++ - 清泛网 - 专注C...

C++的公有继承、保护继承、私有继承有什么区别?首先讲讲public、protected、private成员:public:所有类都可以访问的成员protected:派生类(子类)可以访问的成员private:只有自己类内...首先讲讲public、protected、private成员: public...
https://www.tsingfun.com/it/cpp/1483.html 

stdbool.h C99标准杂谈 - C/C++ - 清泛网 - 专注C/C++内核技术

stdbool.h C99标准杂谈include <stdbool.h> 找不到头文件???bool 是C++中的关键字,C中不支持所以C99标准中引入了头文件 stdbool.h,包含了四个用于布尔型...include <stdbool.h> 找不到头文件??? bool 是C++中的关键字,C中不支持 所以C99...
https://www.tsingfun.com/it/cpp/1485.html 

解决:参数 basepath 不能是相对路径?? - C/C++ - 清泛网 - 专注C/C++内核技术

解决:参数 basepath 不能是相对路径??由于手动将调试参数改动或手动设置参数后项目路径发生了变更都会出现这个问题。项目属性 -> 配置 -> 调试:改成上图(即VS默认配置)即...由于手动将调试参数改动或手动设置参数后项...
https://www.tsingfun.com/it/cpp/1487.html 

warning C4996 - C/C++ - 清泛网 - 专注C/C++内核技术

warning C4996warning C4996: '_vsnprintf': This function or variable may be unsafe. ......warning C4996: strcpy was declar...warning C4996: '_vsnprintf': This function or variable may be unsafe. ...... warning C4996: strcpy was declared deprecated 出现这样的警告,是因为VC2005之后的版...
https://www.tsingfun.com/it/cpp/1488.html 

shared_ptr指针被赋值后,原指针会引用清零、自动释放。 - C/C++ - 清泛网 ...

shared_ptr指针被赋值后,原指针会引用清零、自动释放。shared_ptr指针被赋值后,原指针会引用清零、自动释放。std::shared_ptr<int> intg;void foo(std::shared_ptr<int> p){ ...shared_ptr指针被赋值后,原指针会引用清零、自动释放。 std::sh...
https://www.tsingfun.com/it/cpp/1489.html 

const char *, char const *, char * const 异同?const修饰符各位置有何区...

const char *, char const *, char * const 异同?const修饰符各位置有何区别?const char * p = new char('a'); 这个是常字符,即p的内容不能被修改。char const * p 意义同上,没有区别。 这时,*...const char * p = new char('a'); 这个是常字符,即p的内容...
https://www.tsingfun.com/it/cpp/1490.html 

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

error 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 comm...
https://www.tsingfun.com/it/cpp/1491.html 

c++ boost库 序列化与反序列化 - C/C++ - 清泛网 - 专注C/C++内核技术

c++ boost库 序列化与反序列化1、定义类 结构体序列化函数:template <typename Archive>void serialize(Archive& ar, TOrder & obj, const unsigned int ver...1、定义类/结构体序列化函数: template <typename Archive> void serialize(Archive& ar, TOrder & obj, const unsign...
https://www.tsingfun.com/it/cpp/1492.html 

vc/mfc *通配符 批量删除文件 - C/C++ - 清泛网 - 专注C/C++内核技术

vc/mfc *通配符 批量删除文件直接上代码,可直接运行亲测有效,使用SHFileOperation函数:#include "stdafx.h"#include <windows.h>int _tmain(int argc, _TCHAR*...直接上代码,可直接运行亲测有效,使用SHFileOperation函数: #include "stdafx.h" #include <win...