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

https://bbs.tsingfun.com/thread-774-1-1.html 

c++ boost库 序列化与反序列化 - c++1y / stl - 清泛IT社区,为创新赋能!

...chive& ar, TOrder & obj, const unsigned int version = SERIALIZATION_VERSION) {         ar & BOOST_SERIALIZATION_NVP(obj.Param)                 & BOOST_SERIALIZATION_NVP(obj.OrderRef)    &n...
https://bbs.tsingfun.com/thread-578-1-1.html 

解决IIS发布时global_asax的dll 的CS0433冲突问题 - 环境配置 - 清泛IT社区,为创新赋能!

...ode appropriately. Compiler Error Message: CS0433: The type 'ASP.global_asax' exists in both 'c:\Windows\Microsoft.NET\Framework64\v4.0.30319\Temporary ASP.NET Files\root\925f9bdc\bb48a68c\App_global.asax.eptr0taj.dll' and 'c:\Windows\Microsoft.NET\Framework64\v4.0.30319\Temporary ASP.NET Files\...
https://bbs.tsingfun.com/thread-816-1-1.html 

c++读注册表 - c++1y / stl - 清泛IT社区,为创新赋能!

CString key; key.Format(_T("Software\\Microsoft\\Windows\\CurrentVersion\\App Paths\\xxx")); HKEY hKey; LONG rc = RegOpenKey(HKEY_LOCAL_MACHINE, key, &hKey); if (ERROR_SUCCESS == rc) {         WCHAR szBuffer[MAX_PATH];        &nbsp...
https://bbs.tsingfun.com/thread-765-1-1.html 

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

shared_ptr指针被赋值后,原指针会引用清零、自动释放。 std::shared_ptr<int> intg; void foo(std::shared_ptr<int> p) {         intg = p;   // 原指针释放,存储新的智能指针         //*(in...
https://bbs.tsingfun.com/thread-11-1-1.html 

CreateWindow()动态创建一个EditBox - C/C++ - 清泛IT论坛,有思想、有深度

...;  // 创建EditBox         HWND m_wndEdit = CreateWindow(_T("EDIT"), 0, WS_CHILD | WS_VISIBLE | ES_WANTRETURN,                 70, 4, 60, 16, m_hWnd, 0, 0, 0);        &nb...
https://bbs.tsingfun.com/thread-837-1-1.html 

CListCtrl 扩展风格设置方法:SetExtendedStyle和ModifyStyleEx 区别 - C++...

...常常想到用ModifyStyleEx 来设定,代码如下:ModifyStyleEx(0,LVS_EX_GRIDLINES)   这是不正确的,正确的设定应该是:SetExtendedStyle(LVS_EX_GRIDLINES)   那么,ModifyStyleEx和SetExtendedStyle区别在哪里?实际上,ModifyStyleEx只是对窗...
https://bbs.tsingfun.com/thread-752-1-1.html 

解决:调MFC dll时发生AfxGetInstanceHandle()断言错误 - VC/MFC - 清泛IT...

...DLL函数入口等)添加以下两行代码 afxCurrentInstanceHandle = _AtlBaseModule.GetModuleInstance(); afxCurrentResourceHandle = _AtlBaseModule.GetResourceInstance();
https://www.tsingfun.com/it/os... 

OpenSuSE 安装dtrace - 操作系统(内核) - 清泛网 - 专注IT技能提升

...,这里以15 1为例:OCICLI https: software opensuse org ymp home:Dead_Mozay:gst openSUSE_Leap_15 1 systemtap-dtrace ymp--End--官网:https://software.opensuse.org 搜索 dtrace,选择: 找到指定的版本ymp文件,这里以15.1为例: OCICLI https://software.opensuse.org/ymp...
https://www.tsingfun.com/it/cp... 

浮点数在内存中的表示 - C/C++ - 清泛网 - 专注IT技能提升

浮点数在内存中的表示Float_Memory_Representation一般我们常见的字符型、整型在内存中采用标准的二进制存储,但是程序员往往容易忽略浮点数在内存中的储存方式,从而会导致一些误用,最常见的是浮点数等于零的判断。只有理解...
https://www.tsingfun.com/it/cpp/c_string_h.html 

C/C++头文件string与string.h的区别及Mac平台的特殊性 - C/C++ - 清泛网 - ...

C/C++头文件string与string.h的区别及Mac平台的特殊性c_string_hstrlen() 等函数需要string h头文件,不过MacOS下clang编译器比较特殊,必须string,可以用宏区分Mac平台。string.h(C语言头文件,提供字符数组相关C函数) string.h是C语言里面...