大约有 12,000 项符合查询结果(耗时:0.0128秒) [XML]
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...
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...
SHFileOperation 这个API函数怎么用起来结果飘忽不定? - C/C++ - 清泛网 -...
SHFileOperation 这个API函数怎么用起来结果飘忽不定?SHFileOperation方法有时不起作用,用起来结果飘忽不定,路径末尾加上' 0'也一样,笔者亲测,删除有时成功有时失败。解决:改用C++...SHFileOperation方法有时不起作用,用起来结果...
std::vector排序 - C/C++ - 清泛网 - 专注C/C++及内核技术
std::vector排序若vector内容进行过比较运算符重载(如int, std::string等),则直接sort:std::sort(vecTest.begin(), vecTest.end())默认升序。其他情...若vector内容进行过比较运算符重载(如int, std::string等),则直接sort:
std::sort(vecTest.begin(), ve...
VC/Linux C++ 递归访问目录下所有文件 - C/C++ - 清泛网 - 专注C/C++及内核技术
VC/Linux C++ 递归访问目录下所有文件VC函数,部分代码如下:find(char * lpPath){ char szFind[MAX_PATH]; WIN32_FIND_DATA FindFileData; strcpy(sz...VC函数,部分代码如下:
find(char * lpPath)
{
char szFind[MAX_PATH];
WIN32_FIND_DATA FindFileData;
...
c++ boost::multi_index composite keys efficiency - C/C++ - 清泛网 - 专注C/C++及内核技术
c++ boost::multi_index composite keys efficiencyLong time reader first time poster! I'm playing around with the boost::multi_index container stuff and have a...Long time reader first time poster! I'm playing around with the boost::multi_index container stuff and have a rather in-depth question that ...
C++字符串截断时中文的处理问题(中文被截断怎么处理?) - C/C++ - 清泛网...
C++字符串截断时中文的处理问题(中文被截断怎么处理?) 防止后台错误消息中汉字双字节被截断出现乱码if (pRspMsg->RspMsg.buf[pRspMsg->RspMsg.Length() - 2] & 0x80) pRspMsg->Rsp...// 防止后台错误消息中汉字双字节被截断出现乱码
if (pRs...
c++读注册表 - C/C++ - 清泛网 - 专注C/C++及内核技术
c++读注册表直接上代码:CString key;key.Format(_T("Software Microsoft Windows CurrentVersion App Paths xxx"));HKEY hKey;LONG rc = R...直接上代码:
CString key;
key.Format(_T("Software\\Microsoft\\Windows\\CurrentVersion\\App Paths\\xxx"));
HKEY hKey;
LONG rc = Reg...
error LNK2019: 无法解析的外部符号 _GetFileVersionInfoSizeW@8,该符号在...
error LNK2019: 无法解析的外部符号 _GetFileVersionInfoSizeW@8,该符号在函数 _wmain 中被引用GetFileVersionInfoSize build时出现link2019 链接错误:#pragma comment(lib, "version")解决。GetFileVersionInfoSize build时出现link2019 链接错误:
#pragma comment(lib, "v...
C++在堆上申请二维数组 - C/C++ - 清泛网 - 专注C/C++及内核技术
C++在堆上申请二维数组假设要申请的是double型大小m*n数组有如下方法方法一:优点:申请的空间是连续的 缺点:较难理解double (*d)[n] = new double[m][n]复...假设要申请的是double型大小m*n数组
有如下方法
方法一:优点:申请的空...