<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom"><title type="text">博客园_挥着小鸟的翅膀</title><subtitle type="text">笨拙的小雏鸟，渴望有一天拥有丰裕的羽毛，在梦想的蓝天中翱翔！朝着我的目标前进中...... </subtitle><id>http://feed.cnblogs.com/blog/u/7826/rss</id><updated>2009-03-26T01:17:16Z</updated><author><name>高血压的熊</name><uri>http://www.cnblogs.com/ForEverKissing/</uri></author><generator>feed.cnblogs.com</generator><link rel="alternate" type="text/html" href="http://www.cnblogs.com/ForEverKissing/"/><link rel="self" type="application/atom+xml" href="http://feed.cnblogs.com/blog/u/7826/rss"/><entry><id>http://www.cnblogs.com/ForEverKissing/archive/2009/03/26/1421998.html</id><title type="text">[转] SSL/TLS/WTLS原理</title><summary type="text">最近在研究TLS，找到一篇不错的文章，转过来以便学习，本人不负任何责任。SSL/TLS/WTLS原理作者：yawl &lt; yawl@nsfocus.com &gt;主页：http://www.nsfocus.com日期：2001-02-19一 前言首先要澄清一下名字的混淆：1 SSL(Secure Socket Layer)是netscape公司设计的主要用于web的安全传输协议。这种协议在W...</summary><published>2009-03-26T01:17:00Z</published><updated>2009-03-26T01:17:00Z</updated><author><name>高血压的熊</name><uri>http://www.cnblogs.com/ForEverKissing/</uri></author><link rel="alternate" href="http://www.cnblogs.com/ForEverKissing/archive/2009/03/26/1421998.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/ForEverKissing/archive/2009/03/26/1421998.html"/><content type="text">最近在研究TLS，找到一篇不错的文章，转过来以便学习，本人不负任何责任。SSL/TLS/WTLS原理作者：yawl &lt; yawl@nsfocus.com &gt;主页：http://www.nsfocus.com日期：2001-02-19一 前言首先要澄清一下名字的混淆：1 SSL(Secure Socket Layer)是netscape公司设计的主要用于web的安全传输协议。这种协议在W...</content></entry><entry><id>http://www.cnblogs.com/ForEverKissing/archive/2008/11/15/1333958.html</id><title type="text">[转] Windows完成端口与Linux epoll技术简介</title><summary type="text">Windows完成端口与Linux epoll技术简介2008-01-03 16:18 WINDOWS完成端口编程 1、基本概念 2、WINDOWS完成端口的特点 3、完成端口（Completion Ports ）相关数据结构和创建 4、完成端口线程的工作原理 5、Windows完成端口的实例代码 Linux的EPoll模型 1、为什么select落后 2、内核中提高I/O性能的新方法epoll ...</summary><published>2008-11-14T16:36:00Z</published><updated>2008-11-14T16:36:00Z</updated><author><name>高血压的熊</name><uri>http://www.cnblogs.com/ForEverKissing/</uri></author><link rel="alternate" href="http://www.cnblogs.com/ForEverKissing/archive/2008/11/15/1333958.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/ForEverKissing/archive/2008/11/15/1333958.html"/><content type="text">Windows完成端口与Linux epoll技术简介2008-01-03 16:18 WINDOWS完成端口编程 1、基本概念 2、WINDOWS完成端口的特点 3、完成端口（Completion Ports ）相关数据结构和创建 4、完成端口线程的工作原理 5、Windows完成端口的实例代码 Linux的EPoll模型 1、为什么select落后 2、内核中提高I/O性能的新方法epoll ...</content></entry><entry><id>http://www.cnblogs.com/ForEverKissing/archive/2008/08/13/1267048.html</id><title type="text">[转] STL之list的使用</title><summary type="text">STL中的list就是一双向链表，可高效地进行插入删除元素。现总结一下它的操作。文中所用到两个list对象c1,c2分别有元素c1(10,20,30) c2(40,50,60)。还有一个list&lt;int&gt;::iterator citer用来指向c1或c2元素。list对象的声明构造()：A. list&lt;int&gt;c0; //空链表B. list&lt;int&gt;c1(3...</summary><published>2008-08-13T08:28:00Z</published><updated>2008-08-13T08:28:00Z</updated><author><name>高血压的熊</name><uri>http://www.cnblogs.com/ForEverKissing/</uri></author><link rel="alternate" href="http://www.cnblogs.com/ForEverKissing/archive/2008/08/13/1267048.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/ForEverKissing/archive/2008/08/13/1267048.html"/><content type="text">STL中的list就是一双向链表，可高效地进行插入删除元素。现总结一下它的操作。文中所用到两个list对象c1,c2分别有元素c1(10,20,30) c2(40,50,60)。还有一个list&lt;int&gt;::iterator citer用来指向c1或c2元素。list对象的声明构造()：A. list&lt;int&gt;c0; //空链表B. list&lt;int&gt;c1(3...</content></entry><entry><id>http://www.cnblogs.com/ForEverKissing/archive/2008/08/13/1266610.html</id><title type="text">[转] STL map常用操作简介</title><summary type="text">1。目录 map简介 map的功能 使用map 在map中插入元素 查找并获取map中的元素 从map中删除元素 2。map简介 map是一类关联式容器。它的特点是增加和删除节点对迭代器的影响很小，除了那个操作节点，对其他的节点都没有什么影响。对于迭代器来说，可以修改实值，而不能修改key。 3。map的功能 自动建立Key － value的对应。key 和 value可以是任意你需要的类型。 根...</summary><published>2008-08-13T02:46:00Z</published><updated>2008-08-13T02:46:00Z</updated><author><name>高血压的熊</name><uri>http://www.cnblogs.com/ForEverKissing/</uri></author><link rel="alternate" href="http://www.cnblogs.com/ForEverKissing/archive/2008/08/13/1266610.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/ForEverKissing/archive/2008/08/13/1266610.html"/><content type="text">1。目录 map简介 map的功能 使用map 在map中插入元素 查找并获取map中的元素 从map中删除元素 2。map简介 map是一类关联式容器。它的特点是增加和删除节点对迭代器的影响很小，除了那个操作节点，对其他的节点都没有什么影响。对于迭代器来说，可以修改实值，而不能修改key。 3。map的功能 自动建立Key － value的对应。key 和 value可以是任意你需要的类型。 根...</content></entry><entry><id>http://www.cnblogs.com/ForEverKissing/archive/2008/08/06/1261689.html</id><title type="text">[收集] 工作面试时最难的25个问题</title><summary type="text">准备是成功的一半如果你是一个对目前的职位不满意，正着手去在新的一年里找到一个新的职位，这篇文章就是你的一个帮手。工作面试是你去面对未来的老板的征途中最重要的一个过程。你必须像进行一个击剑锦标赛或着一个国际象棋比赛那样的坚韧和敏捷来对待面试。本为是从 William J. Morin和James C. Cabrera 的“在失业的时候如何生存并成功的找到另一个工作”一文中摘选...</summary><published>2008-08-06T02:06:00Z</published><updated>2008-08-06T02:06:00Z</updated><author><name>高血压的熊</name><uri>http://www.cnblogs.com/ForEverKissing/</uri></author><link rel="alternate" href="http://www.cnblogs.com/ForEverKissing/archive/2008/08/06/1261689.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/ForEverKissing/archive/2008/08/06/1261689.html"/><content type="text">准备是成功的一半如果你是一个对目前的职位不满意，正着手去在新的一年里找到一个新的职位，这篇文章就是你的一个帮手。工作面试是你去面对未来的老板的征途中最重要的一个过程。你必须像进行一个击剑锦标赛或着一个国际象棋比赛那样的坚韧和敏捷来对待面试。本为是从 William J. Morin和James C. Cabrera 的“在失业的时候如何生存并成功的找到另一个工作”一文中摘选...</content></entry><entry><id>http://www.cnblogs.com/ForEverKissing/archive/2008/07/29/1255408.html</id><title type="text">[转] 面试必问的16个经典问题的回答思路</title><summary type="text">面试过程中，面试官会向应聘者发问，而应聘者的回答将成为面试官考虑是否接受他的重要依据。对应聘者而言，了解这些问题背后的“猫腻”至关重要。本文对面试中经常出现的一些典型问题进行了整理，并给出相应的回答思路和参考答案。读者无需过分关注分析的细节，关键是要从这些分析中“悟”出面试的规律及回答问题的思维方式，达到“活学活用”。 问...</summary><published>2008-07-29T03:11:00Z</published><updated>2008-07-29T03:11:00Z</updated><author><name>高血压的熊</name><uri>http://www.cnblogs.com/ForEverKissing/</uri></author><link rel="alternate" href="http://www.cnblogs.com/ForEverKissing/archive/2008/07/29/1255408.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/ForEverKissing/archive/2008/07/29/1255408.html"/><content type="text">面试过程中，面试官会向应聘者发问，而应聘者的回答将成为面试官考虑是否接受他的重要依据。对应聘者而言，了解这些问题背后的“猫腻”至关重要。本文对面试中经常出现的一些典型问题进行了整理，并给出相应的回答思路和参考答案。读者无需过分关注分析的细节，关键是要从这些分析中“悟”出面试的规律及回答问题的思维方式，达到“活学活用”。 问...</content></entry><entry><id>http://www.cnblogs.com/ForEverKissing/archive/2008/07/22/1248596.html</id><title type="text">[转] 如何用WIX ServiceInstall安装Windows服务</title><summary type="text">下面XML代码展示如何利用Wix中的ServiceInstall来自动安装Windows服务&lt;?xml version="1.0" encoding="UTF-8"?&gt;&lt;Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"&gt; &lt;Product Id="832B8322-6349-4ddd-8AC6-CF18E7A05...</summary><published>2008-07-22T04:05:00Z</published><updated>2008-07-22T04:05:00Z</updated><author><name>高血压的熊</name><uri>http://www.cnblogs.com/ForEverKissing/</uri></author><link rel="alternate" href="http://www.cnblogs.com/ForEverKissing/archive/2008/07/22/1248596.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/ForEverKissing/archive/2008/07/22/1248596.html"/><content type="text">下面XML代码展示如何利用Wix中的ServiceInstall来自动安装Windows服务&lt;?xml version="1.0" encoding="UTF-8"?&gt;&lt;Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"&gt; &lt;Product Id="832B8322-6349-4ddd-8AC6-CF18E7A05...</content></entry><entry><id>http://www.cnblogs.com/ForEverKissing/archive/2008/07/21/1247729.html</id><title type="text">[转] const int* p和int* const p</title><summary type="text">constint*p=&amp;i1;这条语句运行发生了哪些事情呢？1、p指向变量i1的内存区域2、*p指向变量i1的内存区域的内容3、*p是整型的4、*p是常量(注：可见constint*和intconst*是相同的)所以1、p可变，因为它不是常量2、*p不可变，因为它是个常量3、*p指向的内存区域的内容可以变(通过i1)同理可分析int*constpint*constp =&amp;i1;这条...</summary><published>2008-07-21T07:21:00Z</published><updated>2008-07-21T07:21:00Z</updated><author><name>高血压的熊</name><uri>http://www.cnblogs.com/ForEverKissing/</uri></author><link rel="alternate" href="http://www.cnblogs.com/ForEverKissing/archive/2008/07/21/1247729.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/ForEverKissing/archive/2008/07/21/1247729.html"/><content type="text">constint*p=&amp;i1;这条语句运行发生了哪些事情呢？1、p指向变量i1的内存区域2、*p指向变量i1的内存区域的内容3、*p是整型的4、*p是常量(注：可见constint*和intconst*是相同的)所以1、p可变，因为它不是常量2、*p不可变，因为它是个常量3、*p指向的内存区域的内容可以变(通过i1)同理可分析int*constpint*constp =&amp;i1;这条...</content></entry><entry><id>http://www.cnblogs.com/ForEverKissing/archive/2008/07/21/1247633.html</id><title type="text">[转] 彻底了解指针数组，数组指针，以及函数指针，以及堆中的分配规则</title><summary type="text">一 ：关于指针和堆的内存分配 先来介绍一下指针: 指针一种类型，理论上来说它包含其他变量的地址，因此有的书上也叫它：地址变量。既然指针是一个类型，是类型就有大小，在达内的服务器上或者普通的PC机上，都是４个字节大小,里边只是存储了一个变量的地址而已。不管什么类型的指针，char * ,int * ,int (*) ,string * ,float * ，都是说明了本指针所指向的地址空间是什么类型而...</summary><published>2008-07-21T05:49:00Z</published><updated>2008-07-21T05:49:00Z</updated><author><name>高血压的熊</name><uri>http://www.cnblogs.com/ForEverKissing/</uri></author><link rel="alternate" href="http://www.cnblogs.com/ForEverKissing/archive/2008/07/21/1247633.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/ForEverKissing/archive/2008/07/21/1247633.html"/><content type="text">一 ：关于指针和堆的内存分配 先来介绍一下指针: 指针一种类型，理论上来说它包含其他变量的地址，因此有的书上也叫它：地址变量。既然指针是一个类型，是类型就有大小，在达内的服务器上或者普通的PC机上，都是４个字节大小,里边只是存储了一个变量的地址而已。不管什么类型的指针，char * ,int * ,int (*) ,string * ,float * ，都是说明了本指针所指向的地址空间是什么类型而...</content></entry><entry><id>http://www.cnblogs.com/ForEverKissing/archive/2008/07/17/1245330.html</id><title type="text">[原] 关于Vista下ERROR_ACCESS_DENIED问题解决办法</title><summary type="text">关于Vista下ERROR_ACCESS_DENIED问题解决办法最近在整vista，本以为32位系统的应该对MFC应用程序有兼容，结果把应用程序放到vista上，居然没法运行，郁闷！然后查资料才晓得，vista为了提高系统的安全性，增加了UAC(User Account Control : 用户帐户控制)，有兴趣TX可以参看我转的另外一篇文章http://www.cnblogs.com/ForE...</summary><published>2008-07-17T09:19:00Z</published><updated>2008-07-17T09:19:00Z</updated><author><name>高血压的熊</name><uri>http://www.cnblogs.com/ForEverKissing/</uri></author><link rel="alternate" href="http://www.cnblogs.com/ForEverKissing/archive/2008/07/17/1245330.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/ForEverKissing/archive/2008/07/17/1245330.html"/><content type="text">关于Vista下ERROR_ACCESS_DENIED问题解决办法最近在整vista，本以为32位系统的应该对MFC应用程序有兼容，结果把应用程序放到vista上，居然没法运行，郁闷！然后查资料才晓得，vista为了提高系统的安全性，增加了UAC(User Account Control : 用户帐户控制)，有兴趣TX可以参看我转的另外一篇文章http://www.cnblogs.com/ForE...</content></entry></feed>
