<?xml version="1.0" encoding="utf-8"?><?xml-stylesheet href='http://feeds.feedsky.com/styles/temp01.xsl' type='text/xsl' ?><!--这是一个由Feedsy提供技术支持的Feed，为了提高读者阅读的体验，以及满足用户美化自己Feed的需要，我们设计了多种精美的Feed模板，提供给大家选择，所有最终呈现出来的样式，皆由用户自愿选择使用，未经许可，任何团体和个人，请不要擅自修改样式或者盗用，这是对于用户选择权的尊重。--><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:fs="http://www.feedsky.com/namespace/feed" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><atom:link href="http://feeds.feedsky.com/csdn.net/zhbaoq" type="application/rss+xml" rel="self"></atom:link><fs:self_link href="http://feeds.feedsky.com/csdn.net/zhbaoq" type="application/rss+xml"></fs:self_link><lastBuildDate>Tue, 06 Jun 2006 11:11:00 GMT</lastBuildDate><title>zhbaoq的专栏</title><link>http://blog.csdn.net/zhbaoq/</link><item><title>C++指针探讨 (三) 成员函数指针</title><link>http://blog.csdn.net/zhbaoq/archive/2006/06/06/775736.aspx</link><wfw:comment>http://blog.csdn.net/zhbaoq/comments/775736.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/zhbaoq/comments/commentRss/775736.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=775736</trackback:ping><description>　C语言的指针相当的灵活方便，但也相当容易出错。许多C语言初学者，甚至C语言老鸟都很容易栽倒在C语言的指针下。但不可否认的是，指针在C语言中的位置极其重要，也许可以偏激一点的来说：没有指针的C程序不是真正的C程序。
　　然而C++的指针却常常给我一种束手束脚的感觉。C++比C语言有更严格的静态类型，更加强调类型安全，强调编译时检查。因此，对于C语言中最容易错用的指针，更是不能放过：C++的指针被分成数据指针，数据成员指针，函数指针，成员函数指针，而且不能随便相互转换。而且这些指针的声明格式都不一样：&lt;img src =&quot;http://blog.csdn.net/zhbaoq/aggbug/775736.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Tue, 06 Jun 2006 19:11:00 +0800</pubDate><author>zhbaoq</author><comments>http://blog.csdn.net/zhbaoq/archive/2006/06/06/775736.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/zhbaoq/archive/2006/06/06/775736.aspx</guid><dc:creator>zhbaoq</dc:creator></item><item><title>C++指针探讨 (二) 函数指针</title><link>http://blog.csdn.net/zhbaoq/archive/2006/06/06/775679.aspx</link><wfw:comment>http://blog.csdn.net/zhbaoq/comments/775679.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/zhbaoq/comments/commentRss/775679.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=775679</trackback:ping><description>　　在C/C++中，数据指针是最直接，也最常用的，因此，理解起来也比较容易。而函数指针，作为运行时动态调用（比如回调函数 CallBack Function）是一种常见的，而且是很好用的手段。

　　我们先简单的说一下函数指针。（这一部份没什么价值，纯是为了引出下一节的内容）
&lt;img src =&quot;http://blog.csdn.net/zhbaoq/aggbug/775679.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Tue, 06 Jun 2006 18:42:00 +0800</pubDate><author>zhbaoq</author><comments>http://blog.csdn.net/zhbaoq/archive/2006/06/06/775679.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/zhbaoq/archive/2006/06/06/775679.aspx</guid><dc:creator>zhbaoq</dc:creator></item><item><title>C++指针探讨 （一）数据指针</title><link>http://blog.csdn.net/zhbaoq/archive/2006/06/06/775677.aspx</link><wfw:comment>http://blog.csdn.net/zhbaoq/comments/775677.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/zhbaoq/comments/commentRss/775677.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=775677</trackback:ping><description>指针，在C/C++语言中一直是很受宠的；几乎找不到一个不使用指针的C/C++应用。用于存储数据和程序的地址，这是指针的基本功能。用于指向整型数，用整数指针(int*)；指向浮点数用浮点数指针(float*)；指向结构，用对应的结构指针(struct xxx *)；指向任意地址，用无类型指针(void*)。&lt;img src =&quot;http://blog.csdn.net/zhbaoq/aggbug/775677.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Tue, 06 Jun 2006 18:40:00 +0800</pubDate><author>zhbaoq</author><comments>http://blog.csdn.net/zhbaoq/archive/2006/06/06/775677.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/zhbaoq/archive/2006/06/06/775677.aspx</guid><dc:creator>zhbaoq</dc:creator></item><item><title>google的一道面试题!(附我的解法）</title><link>http://blog.csdn.net/zhbaoq/archive/2006/05/23/751776.aspx</link><wfw:comment>http://blog.csdn.net/zhbaoq/comments/751776.aspx</wfw:comment><slash:comments>2</slash:comments><wfw:commentRss>http://blog.csdn.net/zhbaoq/comments/commentRss/751776.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=751776</trackback:ping><description>　　有一个整数n,写一个函数f(n),返回0到n之间出现的&quot;1&quot;的个数。比如f(13)=6,现在f(1)=1,问下一个最大的f(n)=n的n是什么？&lt;img src =&quot;http://blog.csdn.net/zhbaoq/aggbug/751776.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Wed, 24 May 2006 03:10:00 +0800</pubDate><author>zhbaoq</author><comments>http://blog.csdn.net/zhbaoq/archive/2006/05/23/751776.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/zhbaoq/archive/2006/05/23/751776.aspx</guid><dc:creator>zhbaoq</dc:creator></item><item><title>掌握 Ajax，第 5 部分: 操纵 DOM</title><link>http://blog.csdn.net/zhbaoq/archive/2006/05/23/750305.aspx</link><wfw:comment>http://blog.csdn.net/zhbaoq/comments/750305.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/zhbaoq/comments/commentRss/750305.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=750305</trackback:ping><description>如果阅读过本系列的 上一篇文章，那么您就非常清楚当 Web 浏览器显示网页时幕后发生的一切了。前面已经提到，当 HTML 或为页面定义的 CSS 发送给 Web 浏览器时，网页被从文本转化成对象模型。无论代码简单或复杂，集中到一个文件还是分散到多个文件，都是如此。然后浏览器直接使用对象模型而不是您提供的文本文件。浏览器使用的模型称为文档对象模型（Document Object Model，DOM）。它连接表示文档中元素、属性和文本的对象。HTML 和 CSS 中所有的样式、值、甚至大部分空格都合并到该对象模型中。给定网页的具体模型称为该页面的 DOM 树。

&lt;img src =&quot;http://blog.csdn.net/zhbaoq/aggbug/750305.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Tue, 23 May 2006 08:32:00 +0800</pubDate><author>zhbaoq</author><comments>http://blog.csdn.net/zhbaoq/archive/2006/05/23/750305.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/zhbaoq/archive/2006/05/23/750305.aspx</guid><dc:creator>zhbaoq</dc:creator></item><item><title>掌握 Ajax，第 4 部分: 利用 DOM 进行 Web 响应</title><link>http://blog.csdn.net/zhbaoq/archive/2006/05/23/750303.aspx</link><wfw:comment>http://blog.csdn.net/zhbaoq/comments/750303.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/zhbaoq/comments/commentRss/750303.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=750303</trackback:ping><description>程序员（使用后端应用程序）和 Web 程序员（编写 HTML、CSS 和 JavaScript）之间的分水岭是长久存在的。但是，Document Object Model (DOM) 弥补了这个裂缝，使得在后端使用 XML 同时在前端使用 HTML 切实可行，并成为极其有效的工具。在本文中，Brett McLaughlin 介绍了 Document Object Model，解释它在 Web 页面中的应用，并开始挖掘其在 JavaScript 中的用途。

&lt;img src =&quot;http://blog.csdn.net/zhbaoq/aggbug/750303.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Tue, 23 May 2006 08:28:00 +0800</pubDate><author>zhbaoq</author><comments>http://blog.csdn.net/zhbaoq/archive/2006/05/23/750303.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/zhbaoq/archive/2006/05/23/750303.aspx</guid><dc:creator>zhbaoq</dc:creator></item><item><title>掌握 Ajax，第 3 部分:  Ajax 中的高级请求和响应</title><link>http://blog.csdn.net/zhbaoq/archive/2006/05/23/750299.aspx</link><wfw:comment>http://blog.csdn.net/zhbaoq/comments/750299.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/zhbaoq/comments/commentRss/750299.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=750299</trackback:ping><description>在本文中，我将在上一篇文章的基础上重点介绍这个请求对象的 3 个关键部分的内容：

·HTTP 就绪状态
·HTTP 状态代码
·可以生成的请求类型

&lt;img src =&quot;http://blog.csdn.net/zhbaoq/aggbug/750299.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Tue, 23 May 2006 08:24:00 +0800</pubDate><author>zhbaoq</author><comments>http://blog.csdn.net/zhbaoq/archive/2006/05/23/750299.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/zhbaoq/archive/2006/05/23/750299.aspx</guid><dc:creator>zhbaoq</dc:creator></item><item><title>掌握 Ajax，第 2 部分: 使用 JavaScript 和 Ajax 发出异步请求</title><link>http://blog.csdn.net/zhbaoq/archive/2006/05/22/750206.aspx</link><wfw:comment>http://blog.csdn.net/zhbaoq/comments/750206.aspx</wfw:comment><slash:comments>1</slash:comments><wfw:commentRss>http://blog.csdn.net/zhbaoq/comments/commentRss/750206.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=750206</trackback:ping><description>本文中，您将开始接触最基本和基础性的有关 Ajax 的全部对象和编程方法：XMLHttpRequest 对象。该对象实际上仅仅是一个跨越所有 Ajax 应用程序的公共线程，您可能已经预料到，只有彻底理解该对象才能充分发挥编程的潜力。事实上，有时您会发现，要正确地使用 XMLHttpRequest，显然不能 使用 XMLHttpRequest。这到底是怎么回事呢？&lt;img src =&quot;http://blog.csdn.net/zhbaoq/aggbug/750206.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Tue, 23 May 2006 07:03:00 +0800</pubDate><author>zhbaoq</author><comments>http://blog.csdn.net/zhbaoq/archive/2006/05/22/750206.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/zhbaoq/archive/2006/05/22/750206.aspx</guid><dc:creator>zhbaoq</dc:creator></item><item><title>使用 GNU autotools 改造一个软件项目</title><link>http://blog.csdn.net/zhbaoq/archive/2006/05/22/750199.aspx</link><wfw:comment>http://blog.csdn.net/zhbaoq/comments/750199.aspx</wfw:comment><slash:comments>1</slash:comments><wfw:commentRss>http://blog.csdn.net/zhbaoq/comments/commentRss/750199.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=750199</trackback:ping><description>本文不是一篇规范的教程，而是用一个软件项目作为例子，演示使用 GNU autotools 进行软件管理的思路和过程。&lt;img src =&quot;http://blog.csdn.net/zhbaoq/aggbug/750199.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Tue, 23 May 2006 06:59:00 +0800</pubDate><author>zhbaoq</author><comments>http://blog.csdn.net/zhbaoq/archive/2006/05/22/750199.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/zhbaoq/archive/2006/05/22/750199.aspx</guid><dc:creator>zhbaoq</dc:creator></item><item><title>掌握 Ajax，第 1 部分: Ajax 简介</title><link>http://blog.csdn.net/zhbaoq/archive/2006/05/22/749154.aspx</link><wfw:comment>http://blog.csdn.net/zhbaoq/comments/749154.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/zhbaoq/comments/commentRss/749154.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=749154</trackback:ping><description>理解 Ajax 及其工作原理，构建网站的一种有效方法。Ajax 由 HTML、JavaScript™ 技术、DHTML 和 DOM 组成，这一杰出的方法可以将笨拙的 Web 界面转化成交互性的 Ajax 应用程序。本文的作者是一位 Ajax 专家，他演示了这些技术如何协同工作 —— 从总体概述到细节的讨论 —— 使高效的 Web 开发成为现实。他还揭开了 Ajax 核心概念的神秘面纱，包括 XMLHttpRequest 对象。&lt;img src =&quot;http://blog.csdn.net/zhbaoq/aggbug/749154.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Mon, 22 May 2006 20:37:00 +0800</pubDate><author>zhbaoq</author><comments>http://blog.csdn.net/zhbaoq/archive/2006/05/22/749154.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/zhbaoq/archive/2006/05/22/749154.aspx</guid><dc:creator>zhbaoq</dc:creator></item></channel></rss>