<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>红颜丽人零基础学习c++ &#187; 红颜丽人</title>
	<atom:link href="http://www.hongyanliren.com/tag/%e9%9b%b6%e5%9f%ba%e7%a1%80%e5%ad%a6%e4%b9%a0c/feed" rel="self" type="application/rss+xml" />
	<link>http://www.hongyanliren.com</link>
	<description>追求技术就像追求#$！不抛弃，不放弃！</description>
	<lastBuildDate>Thu, 16 Mar 2023 07:48:39 +0000</lastBuildDate>
	<language>zh-CN</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.2</generator>
		<item>
		<title>C++文件IO操作流实例详解</title>
		<link>http://www.hongyanliren.com/2014m03/4276.html</link>
		<comments>http://www.hongyanliren.com/2014m03/4276.html#comments</comments>
		<pubDate>Sat, 15 Mar 2014 17:04:09 +0000</pubDate>
		<dc:creator>Quan</dc:creator>
				<category><![CDATA[C++学习]]></category>
		<category><![CDATA[零基础学习c++]]></category>

		<guid isPermaLink="false">http://www.hongyanliren.com/?p=4276</guid>
		<description><![CDATA[C++文件IO操作流实例详解。前两节介绍了C++的IO流类库，标准设备IO操作流中部分预定义流对象的成员函数以及IO格式控制。那今天我将继续介绍关于C++中的流操作内容——文件IO操作流fstream。并会着重讲解C++是如何对文件进行操作的。

文件指存放在外部介质上的数据的集合。大家都知道操[......]<p class='read-more'><a href='http://www.hongyanliren.com/2014m03/4276.html'>Read more</a></p>]]></description>
		<wfw:commentRss>http://www.hongyanliren.com/2014m03/4276.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>C++异常处理实例</title>
		<link>http://www.hongyanliren.com/2014m03/4273.html</link>
		<comments>http://www.hongyanliren.com/2014m03/4273.html#comments</comments>
		<pubDate>Sat, 15 Mar 2014 16:30:58 +0000</pubDate>
		<dc:creator>Quan</dc:creator>
				<category><![CDATA[C++学习]]></category>
		<category><![CDATA[零基础学习c++]]></category>

		<guid isPermaLink="false">http://www.hongyanliren.com/?p=4273</guid>
		<description><![CDATA[<strong>C++异常处理实例，使用介绍。</strong>C++异常处理程序中的错误分为编译时的错误和运行时的错误。编译时的错误主要是语法错误：句尾没有加分号，括号不匹配，关键字错误等，这类错误比较容易修改，编译系统会指出错误在第几行，什么错误。而运行时的错误则不容易修改，因为其中的错误是不可预料的，或者可以预料但无法避免的，[......]<p class='read-more'><a href='http://www.hongyanliren.com/2014m03/4273.html'>Read more</a></p>]]></description>
		<wfw:commentRss>http://www.hongyanliren.com/2014m03/4273.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>C++之命名空间End Chapter</title>
		<link>http://www.hongyanliren.com/2014m03/4271.html</link>
		<comments>http://www.hongyanliren.com/2014m03/4271.html#comments</comments>
		<pubDate>Sat, 15 Mar 2014 15:42:33 +0000</pubDate>
		<dc:creator>Quan</dc:creator>
				<category><![CDATA[C++学习]]></category>
		<category><![CDATA[零基础学习c++]]></category>

		<guid isPermaLink="false">http://www.hongyanliren.com/?p=4271</guid>
		<description><![CDATA[C++中的命名空间和头文件的命名规则。也是C++这一基础系列的最后一节。首先感谢在学习C++的一路上，有这么多关注这系列的博友们的陪伴和帮助。正因为有了你们的建议和指导，使我对C++有了更深的认识和更大的兴趣。这个系列结束之后，我会继续学习和关注C++的一些实际应用。

一个大型软件通常是由多个[......]<p class='read-more'><a href='http://www.hongyanliren.com/2014m03/4271.html'>Read more</a></p>]]></description>
		<wfw:commentRss>http://www.hongyanliren.com/2014m03/4271.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>C语言中.C头文件和.H头文件的概念以及关系</title>
		<link>http://www.hongyanliren.com/2014m03/4268.html</link>
		<comments>http://www.hongyanliren.com/2014m03/4268.html#comments</comments>
		<pubDate>Sat, 15 Mar 2014 15:25:58 +0000</pubDate>
		<dc:creator>Quan</dc:creator>
				<category><![CDATA[C++学习]]></category>
		<category><![CDATA[零基础学习c++]]></category>

		<guid isPermaLink="false">http://www.hongyanliren.com/?p=4268</guid>
		<description><![CDATA[C语言中.C头文件和.H头文件的概念以及关系。程序设计如果概念很清晰，那基本上没什么难题(会难在数学上，比如算法的选择、时间空间与效率的取舍、稳定与资源的平衡上)。然而要掌握清晰的概念也没那么容易。比如下面这个例子，看看你有没有很清晰透彻的认识。
//a.h
void foo();
//a.c[......]<p class='read-more'><a href='http://www.hongyanliren.com/2014m03/4268.html'>Read more</a></p>]]></description>
		<wfw:commentRss>http://www.hongyanliren.com/2014m03/4268.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>C++一维数组起泡法思路以及相关应用实例</title>
		<link>http://www.hongyanliren.com/2014m03/4265.html</link>
		<comments>http://www.hongyanliren.com/2014m03/4265.html#comments</comments>
		<pubDate>Sat, 15 Mar 2014 15:16:41 +0000</pubDate>
		<dc:creator>Quan</dc:creator>
				<category><![CDATA[C++学习]]></category>
		<category><![CDATA[零基础学习c++]]></category>

		<guid isPermaLink="false">http://www.hongyanliren.com/?p=4265</guid>
		<description><![CDATA[C++一维数组起泡法思路以及相关应用实例。<strong>一维数组的定义和引用。</strong><strong>c++一维数组相关概念介绍。</strong>

<strong><span style="line-height: 1.714285714; font-size: 1rem;">c++一维数组相关概念</span></strong>

1、 具有相同属性有内在联系的一批数据看作一个有机的整体，称为数组。

2、 引用数组的好处：引入数组就不需要在程序中定义大量的变量，大大减少程序中变量的数量，使程序[......]<p class='read-more'><a href='http://www.hongyanliren.com/2014m03/4265.html'>Read more</a></p>]]></description>
		<wfw:commentRss>http://www.hongyanliren.com/2014m03/4265.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>C++二维数组的应用及行列互换存储思路介绍，擂台法求最大值</title>
		<link>http://www.hongyanliren.com/2014m03/4263.html</link>
		<comments>http://www.hongyanliren.com/2014m03/4263.html#comments</comments>
		<pubDate>Sat, 15 Mar 2014 15:11:52 +0000</pubDate>
		<dc:creator>Quan</dc:creator>
				<category><![CDATA[C++学习]]></category>
		<category><![CDATA[零基础学习c++]]></category>

		<guid isPermaLink="false">http://www.hongyanliren.com/?p=4263</guid>
		<description><![CDATA[<strong>C++二维数组的应用及行列互换存储思路介绍，擂台法求最大值。</strong>

<strong>c++二维数组的定义和引用</strong>

<span style="line-height: 1.714285714; font-size: 1rem;">1、  具有两个下标的数组称为二维数组。</span>

2、  一般形式：

类型标识符 数组名[常量表达式][常量表达式]

例如：float a[3][4], b[5][6];

3、  c[......]<p class='read-more'><a href='http://www.hongyanliren.com/2014m03/4263.html'>Read more</a></p>]]></description>
		<wfw:commentRss>http://www.hongyanliren.com/2014m03/4263.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>深入理解C++字符数组函数</title>
		<link>http://www.hongyanliren.com/2014m03/4261.html</link>
		<comments>http://www.hongyanliren.com/2014m03/4261.html#comments</comments>
		<pubDate>Sat, 15 Mar 2014 15:06:39 +0000</pubDate>
		<dc:creator>Quan</dc:creator>
				<category><![CDATA[C++学习]]></category>
		<category><![CDATA[零基础学习c++]]></category>

		<guid isPermaLink="false">http://www.hongyanliren.com/?p=4261</guid>
		<description><![CDATA[深入理解C++字符数组函数。

1、   <strong>字符串复制函数</strong>

其函数原型为：<strong>strcpy ( char[ ] , const char[ ]);</strong>

strcpy是string copy（字符串复制）缩写。其作用是将第二个字符数组里面的字符串复制到第一个字符数组中去，把第一个字符数组中的相应[......]<p class='read-more'><a href='http://www.hongyanliren.com/2014m03/4261.html'>Read more</a></p>]]></description>
		<wfw:commentRss>http://www.hongyanliren.com/2014m03/4261.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>C++中的指针入门实例简介及剖析</title>
		<link>http://www.hongyanliren.com/2014m03/4258.html</link>
		<comments>http://www.hongyanliren.com/2014m03/4258.html#comments</comments>
		<pubDate>Sat, 15 Mar 2014 11:43:07 +0000</pubDate>
		<dc:creator>Quan</dc:creator>
				<category><![CDATA[C++学习]]></category>
		<category><![CDATA[零基础学习c++]]></category>

		<guid isPermaLink="false">http://www.hongyanliren.com/?p=4258</guid>
		<description><![CDATA[C++中的指针入门实例简介及剖析。c++指针介绍。指针源码：

<strong>C++指针复习</strong>

一、指针的基本概念

1、   c++内存存储原理

如果在程序中定义一个变量，在编译时就给这个变量分配内存单位。系统根据程序中定义的变量类型，分配一定长度的空间。例如，C++编译系统一般为整形变量分配[......]<p class='read-more'><a href='http://www.hongyanliren.com/2014m03/4258.html'>Read more</a></p>]]></description>
		<wfw:commentRss>http://www.hongyanliren.com/2014m03/4258.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>C++指向结构体变量的指针与链表结构的关系实例</title>
		<link>http://www.hongyanliren.com/2014m03/4256.html</link>
		<comments>http://www.hongyanliren.com/2014m03/4256.html#comments</comments>
		<pubDate>Sat, 15 Mar 2014 11:40:12 +0000</pubDate>
		<dc:creator>Quan</dc:creator>
				<category><![CDATA[C++学习]]></category>
		<category><![CDATA[零基础学习c++]]></category>

		<guid isPermaLink="false">http://www.hongyanliren.com/?p=4256</guid>
		<description><![CDATA[c++指向结构体变量的指针与链表结构的关系应用

1、 一个结构体变量的指针就是该变量所占据的内存段的起始地址。可设一个指针变量来指向一个结构体变量，该指针变量的值是结构体变量的其实地址。指针变量也可用来指向结构体数组的元素。

举例说明：声明一个结构体Student类型，定义一个Stude[......]<p class='read-more'><a href='http://www.hongyanliren.com/2014m03/4256.html'>Read more</a></p>]]></description>
		<wfw:commentRss>http://www.hongyanliren.com/2014m03/4256.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>c++动态内存分配和撤销方式实例说明</title>
		<link>http://www.hongyanliren.com/2014m03/4254.html</link>
		<comments>http://www.hongyanliren.com/2014m03/4254.html#comments</comments>
		<pubDate>Sat, 15 Mar 2014 10:42:15 +0000</pubDate>
		<dc:creator>Quan</dc:creator>
				<category><![CDATA[C++学习]]></category>
		<category><![CDATA[零基础学习c++]]></category>

		<guid isPermaLink="false">http://www.hongyanliren.com/?p=4254</guid>
		<description><![CDATA[c++动态内存分配和撤销方式剖析。C语言中是利用库函数malloc以及free来分配与撤销内存空间的。C++提供了运算符new以及delete来取代malloc和free函数。new和delete是运算符，不是函数，所以执行效率高。和C语言兼容，但是C++仍保留malloc和free函数，提议使用n[......]<p class='read-more'><a href='http://www.hongyanliren.com/2014m03/4254.html'>Read more</a></p>]]></description>
		<wfw:commentRss>http://www.hongyanliren.com/2014m03/4254.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
