XSLT存档  

不及格的程序员-八神

 查看分类:  ASP.NET XML/XSLT JavaScripT   我的MSN空间Blog

随笔分类 -  C++

1 2 3 4 5 ··· 9 下一页
C++劝退系列:返回类实例的公有字段属性
该文被密码保护。
posted @ 2025-10-23 23:22 不及格的程序员-八神 阅读(0) 评论(0) 推荐(0)
C++没有字节BYTE类型(转)
摘要:作者:wzsayiie链接:https://www.zhihu.com/question/40192302/answer/103161425来源:知乎著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。 如果题主以后读C、C++标准文档的话,会发现这个看似比较怪异的地方: 在“运算符 阅读全文
posted @ 2024-07-17 17:05 不及格的程序员-八神 阅读(5) 评论(0) 推荐(0)
Using classes exported from a DLL using LoadLibrary
摘要:Using classes exported from a DLL using LoadLibrary Anup. V Is your email address OK? You are signed up for our newsletters or notifications but your 阅读全文
posted @ 2024-01-24 14:12 不及格的程序员-八神 阅读(45) 评论(0) 推荐(0)
关于异常 未能找到XX.XmlSerializers.dll
摘要:关于异常 未能找到XX.XmlSerializers.dll 开发调试过程中,遇到未能找到文件XX.XMLSerializers.dll的引用(这里XX指一个项目的名称) 解决方法时在项目的属性中设置,生成→ 生成序列化程序集→ 开,这样就可以生成对应的上述文件 "$(FrameworkSDKDir 阅读全文
posted @ 2024-01-04 13:43 不及格的程序员-八神 阅读(85) 评论(0) 推荐(0)
MFC 源代码
该文被密码保护。
posted @ 2023-12-18 14:14 不及格的程序员-八神 阅读(0) 评论(0) 推荐(0)
CString CStdioFile
摘要:以下便是 MFCCON.CPP 內容: #0001 // File : MFCCON.CPP #0002 // Author : J.J.Hou / Top Studio #0003 // Date : 1997.04.06 #0004 // Goal : Fibonacci sequencee, 阅读全文
posted @ 2023-12-07 15:37 不及格的程序员-八神 阅读(19) 评论(0) 推荐(0)
C++函数返回对象效率以及使用建议(多析构了一次,未定义行为)
摘要:C++中函数返回值与拷贝 白给程序猿 最新推荐文章于 2022-08-22 18:48:40 分类专栏: c++ 文章标签: c++ 编程语言 五一假期最后一天,看JUC看的头疼,写写blog放松一下。作为自己的第一篇blog,自己就先来谈谈对C++中函数返回return的理解,自己本来在学Java 阅读全文
posted @ 2023-09-27 09:34 不及格的程序员-八神 阅读(363) 评论(0) 推荐(0)
C++引用10分钟入门教程
摘要:// CodeData.h : 编码数据列表及宏定义 // #if !defined(CODEDATA_H__126F56F0_FED9_11D1_A3AE_0000B4312379__INCLUDED_) #define CODEDATA_H__126F56F0_FED9_11D1_A3AE_00 阅读全文
posted @ 2023-09-27 09:30 不及格的程序员-八神 阅读(30) 评论(0) 推荐(0)
C++ new new[]详解
摘要:C++ new new[]详解 精髓: operator new()完成的操作一般只是分配内存;而构造函数的调用(如果需要)是在new运算符中完成的。 operator new和new 运算符是不同的,operator new只分配内存,而只要new出现无论是不是operator new都会调用ne 阅读全文
posted @ 2023-09-22 15:04 不及格的程序员-八神 阅读(321) 评论(0) 推荐(0)
关于CMap,CArray的小知识
摘要://指针类型成员的汇编代码 for (; nCount--; pElements++) 004354D0 EB 09 jmp ConstructElements+6Bh (004354db) 004354D2 8B 55 08 mov edx,dword ptr [ebp+8] 004354D5 8 阅读全文
posted @ 2023-09-20 14:32 不及格的程序员-八神 阅读(314) 评论(0) 推荐(0)
vc++ compile log, plg file.
摘要:.plg 是编译信息文件,编译时的error和warning信息文件(实际上是一个html文件),一般用处不大. 在Tools->Options里面有个选项可以控制这个文件的生成; vc++ compile log question 1: When I compile my C program wi 阅读全文
posted @ 2023-09-12 11:01 不及格的程序员-八神 阅读(56) 评论(0) 推荐(0)
How VC6 Disconnect a Project from Source Control
摘要:Microsoft KB Archive/180945 < Microsoft KB Archive Jump to:navigation, search Knowledge Base How To Disconnect a Project from Source Control Article I 阅读全文
posted @ 2023-09-12 10:56 不及格的程序员-八神 阅读(16) 评论(0) 推荐(0)
Exception Handling in MFC, throw CString;(e->Delete();删除异常)
摘要:- bool CCreateAccountCmd::Execute() { CWaitCursor wait; try { CLicDatabase licImport(m_cNewAccName, m_strLicFilePath); try { licImport.OpenLicDB(); bo 阅读全文
posted @ 2023-09-07 11:21 不及格的程序员-八神 阅读(98) 评论(0) 推荐(0)
Managed C# Byte Arrays to Un-Managed C++ Byte Arrays
摘要:Managed C# Byte Arrays to Un-Managed C++ Byte Arrays Posted in software by Christopher R. Wirz on Sat Jul 08 2017 Bytes are very foundational in C#, w 阅读全文
posted @ 2023-08-29 09:55 不及格的程序员-八神 阅读(25) 评论(0) 推荐(0)
ReadKey C vs C++ vs C#
摘要:View Full Version : C vs. C++ vs. C# Lucky 06-22-2012, 09:48 PM Hi. I am a computer scientist. This is a comparison of memory usage for a simple hello 阅读全文
posted @ 2023-08-28 11:52 不及格的程序员-八神 阅读(28) 评论(0) 推荐(0)
VS2015设置DLL和LIB的输出目录
摘要:VS2015设置DLL和LIB的输出目录 VS2015设置DLL和LIB的输出目录 DLL设置输出目录 工程点击右键–>属性–>链接器–>常规–>输出文件 工程点击右键Configuration Properties–>Linker–>General–>Output File 默认设置,一般为:$( 阅读全文
posted @ 2023-08-25 15:17 不及格的程序员-八神 阅读(782) 评论(0) 推荐(0)
vc6 配置使用 boost 1.34.1
摘要:vc6 配置使用 boost 1.34.1 is2120于 2012-01-13 14:17:05 发布2470 收藏 分类专栏: c++ Boost 文章标签: python include library string 磁盘 cmd 版权 c++同时被 2 个专栏收录 61 篇文章0 订阅 订阅 阅读全文
posted @ 2023-06-26 11:35 不及格的程序员-八神 阅读(24) 评论(0) 推荐(0)
Delete vector contents and free up memory in C++, Erase swap
摘要:Delete vector contents and free up memory in C++ This post will discuss how to delete the vector’s contents and free up the memory allocated by the ve 阅读全文
posted @ 2023-06-22 14:44 不及格的程序员-八神 阅读(16) 评论(0) 推荐(0)
Const 关键字 与指针
摘要:Const 关键字 与指针 发表于2007年04月29日由不及格的程序员-八神 星期一 天气:晴 使用指针 会涉及到两个对象 一个是指针本身,另一个是它指向的对象. 将指针声明为 const 就使对象为常量而不是指针为常量; 例如: const char* p = "asdf"; //指向常量的指针 阅读全文
posted @ 2023-06-21 11:36 不及格的程序员-八神 阅读(12) 评论(0) 推荐(0)
DisableThreadLibraryCalls与DLLMain死锁
摘要:DisableThreadLibraryCalls与DLLMain死锁 1、首先写个简单的DLL,用来验证 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 BOOL APIE 阅读全文
posted @ 2023-06-18 22:51 不及格的程序员-八神 阅读(675) 评论(0) 推荐(0)

1 2 3 4 5 ··· 9 下一页