<?xml version="1.0" standalone="yes"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/"><channel><title>清风的blog - C++</title><link>http://blog.careff.com/</link><description>优然探索 - </description><generator>RainbowSoft Studio Z-Blog 2.2 Prism Build 140101</generator><language>zh-CN</language><copyright>Copyright (C) 2008-2024 careff.com Inc.,All  Rights Reserved.                    雅虎统计      </copyright><pubDate>Tue, 09 Jun 2026 12:55:30 +0800</pubDate><item><title>Hello cin</title><author>a@b.com (admin)</author><link>http://blog.careff.com/post/221.html</link><pubDate>Mon, 16 Nov 2009 19:29:28 +0800</pubDate><guid>http://blog.careff.com/post/221.html</guid><description><![CDATA[#include <iostream>
#include <string>
using namespace std;
int main()
{
	string userName;
	cout << "What is your name?:";
	cin >> userName;
	cout<< "Hello " << userName << "!" << endl;
	return 0;
}
]]></description><category>C++</category><comments>http://blog.careff.com/post/221.html#comment</comments><wfw:commentRss>http://blog.careff.com/feed.asp?cmt=221</wfw:commentRss></item><item><title>VC项目文件说明 </title><author>a@b.com (admin)</author><link>http://blog.careff.com/post/220.html</link><pubDate>Mon, 16 Nov 2009 18:10:28 +0800</pubDate><guid>http://blog.careff.com/post/220.html</guid><description><![CDATA[VC项目文件说明 
.opt 工程关于开发环境的参数文件。如工具条位置等信息； 
.aps (AppStudio File),资源辅助文件,二进制格式,一般不用去管他. 
.clw ClassWizard信息文件,实际上是INI文件的格式,有兴趣可以研究一下.有时候ClassWizard出问题,手工修改CLW文件可以解决.如果此文件不存在的话,每次用ClassWizard的时候绘提示你是否重建. 
.dsp (DeveloperStudio Project):项目文件,文本格式,不过不熟悉的话不要手工修改
.DSW(DeveloperStudio Workspace)是工作区文件,其他特点和DSP差不多. 
.plg 是编译信息文件,编译时的error和warning信息文件（实际上是一个html文件）,一般用处不大.在Tools->Options里面有个选项可以控制这个文件的生成. 
.hpj (Help Project)是生成帮助文件的工程,用microsfot  Help Compiler可以处理. 
.mdp (Microsoft DevStudio Project)是旧版本的项目文件,如果要打开此文件的话,会提示你是否转换成新的DSP格式. 
.bsc 是用于浏览项目信息的,如果用Source Brower的话就必须有这个文件.如果不用这个功能的话,可以在Project Options里面去掉Generate Browse Info File,可以加快编译速度. 
.map 是执行文件的映像信息纪录文件,除非对系统底层非常熟悉,这个文件一般用不着. 
.pch (Pre-Compiled File)是预编译文件,可以加快编译速度,但是文件非常大. 
.pdb (Program Database)记录了程序有关的一些数据和调试信息,在调试的时候可能有用. 
.exp 只有在编译DLL的时候才会生成,记录了DLL文件中的一些信息.一般也没什么用. 
.ncb 无编译浏览文件(no compile browser)。当自动完成功能出问题时可以删除此文件。build后会自动生成。 ]]></description><category>C++</category><comments>http://blog.careff.com/post/220.html#comment</comments><wfw:commentRss>http://blog.careff.com/feed.asp?cmt=220</wfw:commentRss></item><item><title>C++的HelloWord</title><author>a@b.com (admin)</author><link>http://blog.careff.com/post/219.html</link><pubDate>Mon, 16 Nov 2009 18:02:19 +0800</pubDate><guid>http://blog.careff.com/post/219.html</guid><description><![CDATA[#include <iostream>
using namespace std;
int main()
{
	cout << "Hello World" << endl;
	return 0;
}]]></description><category>C++</category><comments>http://blog.careff.com/post/219.html#comment</comments><wfw:commentRss>http://blog.careff.com/feed.asp?cmt=219</wfw:commentRss></item></channel></rss>
