XSLT存档  

不及格的程序员-八神

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

随笔分类 -  C++

上一页 1 ··· 4 5 6 7 8 9 下一页
VC2010的MFC程序想调用.net做的WebService
摘要:VC2010的MFC程序想调用.net做的WebService 2010-8-24 14:54 阅读(1) 赞 评论(1) 转载(1) 分享 复制地址 收藏夹按钮收藏 更多 上一篇 | 下一篇:[转]取标准时间 /... VC2010的MFC程序想调用.net做的WebService,发现IDE中不 阅读全文
posted @ 2021-11-01 14:22 不及格的程序员-八神 阅读(29) 评论(0) 推荐(0)
透明窗体显示 GetProcAddress
摘要:透明窗体显示 2010-8-12 13:47 查了相关资料,通过SetLayeredWindowAttributesAPI来实现,参见如下函数代码 void CPopUI::SetTransparent(void){ SetWindowLong(this->GetSafeHwnd(), GWL_EX 阅读全文
posted @ 2021-11-01 14:20 不及格的程序员-八神 阅读(24) 评论(0) 推荐(0)
C++标准库和标准模板库
摘要:C++标准库和标准模板库 2017-4-24 11:47 阅读(7) 赞 评论 转载 分享 复制地址 收藏夹按钮收藏 更多 上一篇 | 下一篇:rk.信息安全 C++标准库和标准模板库 C++标准库和标准模板库 转自原文http://blog.csdn.net/sxhelijian/article/ 阅读全文
posted @ 2021-11-01 10:48 不及格的程序员-八神 阅读(21) 评论(0) 推荐(0)
并发编程与锁的底层原理
该文被密码保护。
posted @ 2019-01-17 21:44 不及格的程序员-八神 阅读(1) 评论(0) 推荐(0)
Custom Date and Time Format Strings
摘要:Custom Date and Time Format Strings 2017-3-30 54 min to read Contributors A date and time format string defines the text representation of a DateTime  阅读全文
posted @ 2017-07-14 14:57 不及格的程序员-八神 阅读(6) 评论(0) 推荐(0)
内存初始化[软硬件]
该文被密码保护。
posted @ 2017-06-17 22:51 不及格的程序员-八神 阅读(0) 评论(0) 推荐(0)
C++ 并行编程中的“锁”难题
摘要:并行编程中的“锁”难题 转自:http://www.parallellabs.com/2011/10/02/lock-in-parallel-programming/在并行程序中,锁的使用会主要会引发两类难题:一类是诸如死锁、活锁等引起的多线程Bug;另一类是由锁竞争引起的性能瓶颈。本文将介绍并行编 阅读全文
posted @ 2017-05-04 10:07 不及格的程序员-八神 阅读(16) 评论(0) 推荐(0)
Vector与数组
摘要:Object[] object1 ; //数组定义 Vector<Object> object2;//Vector定义 object2 = new Vector<Object>(Arrays.asList(o1));// array -> vector object1 = object2 .toAr 阅读全文
posted @ 2017-04-26 21:42 不及格的程序员-八神 阅读(9) 评论(0) 推荐(0)
Volatile 关键字 各语言中的表现
该文被密码保护。
posted @ 2017-04-07 10:08 不及格的程序员-八神 阅读(1) 评论(0) 推荐(0)
[C/C++] (int)a,&a,(int)&a,(int&)a区别 | a,a[0],&a,&a[0]区别
摘要:1 #include <iostream> 2 #include <stdio.h> 3 #include <string.h> 4 #include <conio.h> 5 using namespace std; 6 7 int main() 8 { 9 float a = 1.0f; 10 1 阅读全文
posted @ 2015-05-28 13:48 不及格的程序员-八神 阅读(34) 评论(0) 推荐(0)
抓屏原理与实现
该文被密码保护。
posted @ 2015-04-16 14:27 不及格的程序员-八神 阅读(3) 评论(0) 推荐(0)
变速齿轮的工作原理与研究手记
该文被密码保护。
posted @ 2015-03-25 11:12 不及格的程序员-八神 阅读(3) 评论(0) 推荐(0)
C++ typedef用法小结
摘要:第一、四个用途 用途一: 定义一种类型的别名,而不只是简单的宏替换。可以用作同时声明指针型的多个对象。比如:char* pa, pb; // 这多数不符合我们的意图,它只声明了一个指向字符变量的指针, // 和一个字符变量;以下则可行:typedef char* PCHAR; // 一般用大写PCH 阅读全文
posted @ 2014-12-04 17:09 不及格的程序员-八神 阅读(41) 评论(0) 推荐(0)
Debugging Process Startup
摘要:Debugging Process Startup Q: How do I debug a process's startup code? A: This depends on how the process is launched. For a typical application-level 阅读全文
posted @ 2014-03-27 17:39 不及格的程序员-八神 阅读(373) 评论(0) 推荐(0)
Creating a Singleton Instance(各语言单例模式)
摘要:双检锁技术 Java @ThreadSafe public class Singleton { private static class ResourceHolder { public static Resource res = new Resource(); } public static Res 阅读全文
posted @ 2013-01-29 11:05 不及格的程序员-八神 阅读(290) 评论(0) 推荐(0)
iOS面试小题集锦
摘要:1、Object-C有多继承吗?没有的话用什么代替? cocoa 中所有的类都是NSObject 的子类 多继承在这里是用protocol 委托代理 来实现的你不用去考虑繁琐的多继承 ,虚基类的概念.ood的多态特性 在 obj-c 中通过委托来实现. 2、Object-C有私有方法吗?私有变量呢? 阅读全文
posted @ 2013-01-29 10:05 不及格的程序员-八神 阅读(1580) 评论(0) 推荐(0)
IEEE printf specification, Format Message OutputDebugString C++多行文本字面量
摘要:C++ CString strFormat; strFormat.Format("keyName:%s\r\n ", entity->cKeyName); ::OutputDebugString(strFormat); // typedef CStringT<TCHAR, StrTraitATL<T 阅读全文
posted @ 2012-05-22 14:12 不及格的程序员-八神 阅读(367) 评论(0) 推荐(0)
P/Invoke调用dll函数,将本来void的函数声明为带返回值的,在win7出错,在winxp下正常,理由是?-- 续
摘要:作者:不及格的程序员-八神 在前文中P/Invoke调用dll函数,将本来void的函数声明为带返回值的,在win7出错,在winxp下正常,理由是? 本以为自已可以耍小聪明骗过clr平台调用引擎,将eax寄存器做为返回值.其实这样做一开始就是错误的. CLR内存管理在平台调用中使用COM内存管理模 阅读全文
posted @ 2010-10-20 10:18 不及格的程序员-八神 阅读(353) 评论(3) 推荐(1)
P/Invoke调用dll函数,将本来void的函数声明为带返回值的,在win7出错,在winxp下正常,理由是? [] 操作符
摘要:作者:不及格的程序员-八神 情况描述: 我在win32 dll 项目中封装了段asm代码调用另一个dll中的函数. 在我的win32 dll项目中公开的函数声明如下: 1 extern "C" _declspec(dllexport) void No(const char* source, char 阅读全文
posted @ 2010-10-13 15:24 不及格的程序员-八神 阅读(1097) 评论(7) 推荐(2)
.NET 下 STA(单线程套间/单元)的意义.
该文被密码保护。
posted @ 2010-05-09 22:25 不及格的程序员-八神 阅读(1539) 评论(2) 推荐(0)

上一页 1 ··· 4 5 6 7 8 9 下一页