<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom"><title type="text">博客园_潇湘隐者_分类_C/C++</title><id>http://feed.cnblogs.com/blog/u/57955/category/231754/rss</id><updated>2012-06-03T14:23:57Z</updated><generator>feed.cnblogs.com</generator><link rel="alternate" type="text/html" href="http://www.cnblogs.com/kerrycode/category/231754.html"/><link rel="self" type="application/atom+xml" href="http://feed.cnblogs.com/blog/u/57955/category/231754/rss"/><entry><id>http://www.cnblogs.com/kerrycode/archive/2010/03/09/1681315.html</id><title type="text">C++虚函数解析（转）</title><summary type="text">本文来自CSDN博客，转载请标明出处：http://blog.csdn.net/hairetz/archive/2009/04/29/4137000.aspxC++中的虚函数的作用主要是实现了多态的机制。关于多态，简而言之就是用父类型别的指针指向其子类的实例，然后通过父类的指针调用实际子类的成员函数。这种技术可以让父类的指针有“多种形态”，这是一种泛型技术。所谓泛型技术，说...</summary><published>2010-03-09T01:49:00Z</published><updated>2010-03-09T01:49:00Z</updated><author><name>潇湘隐者</name><uri>http://www.cnblogs.com/kerrycode/</uri></author><link rel="alternate" href="http://www.cnblogs.com/kerrycode/archive/2010/03/09/1681315.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/kerrycode/archive/2010/03/09/1681315.html"/><content type="text">本文来自CSDN博客，转载请标明出处：http://blog.csdn.net/hairetz/archive/2009/04/29/4137000.aspxC++中的虚函数的作用主要是实现了多态的机制。关于多态，简而言之就是用父类型别的指针指向其子类的实例，然后通过父类的指针调用实际子类的成员函数。这种技术可以让父类的指针有“多种形态”，这是一种泛型技术。所谓泛型技术，说...</content></entry><entry><id>http://www.cnblogs.com/kerrycode/archive/2010/01/31/1660352.html</id><title type="text">C++学习笔记——常量定义</title><summary type="text">常量是定义以后，在程序运行中值不能被改变的标识符。C++中定义常量可以用#define 、const 这两种方法。例如:#define PRICE 10//定义单价常量10const int PRICE = 10; //定义单价常量10其实用常量是有它的理由的，下面我们来看下面两段程序对比代码Code highlighting produced by Actipro CodeHighlighte...</summary><published>2010-01-31T10:14:00Z</published><updated>2010-01-31T10:14:00Z</updated><author><name>潇湘隐者</name><uri>http://www.cnblogs.com/kerrycode/</uri></author><link rel="alternate" href="http://www.cnblogs.com/kerrycode/archive/2010/01/31/1660352.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/kerrycode/archive/2010/01/31/1660352.html"/><content type="text">常量是定义以后，在程序运行中值不能被改变的标识符。C++中定义常量可以用#define 、const 这两种方法。例如:#define PRICE 10//定义单价常量10const int PRICE = 10; //定义单价常量10其实用常量是有它的理由的，下面我们来看下面两段程序对比代码Code highlighting produced by Actipro CodeHighlighte...</content></entry></feed>
