﻿<?xml version="1.0" encoding="utf-8" 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>C++博客-一杆笔一张纸-最新评论</title><link>http://www.cppblog.com/applex1122/CommentsRSS.aspx</link><description /><language>zh-cn</language><pubDate>Wed, 20 Aug 2014 11:18:50 GMT</pubDate><lastBuildDate>Wed, 20 Aug 2014 11:18:50 GMT</lastBuildDate><generator>cnblogs</generator><item><title>re: error LNK2019: 无法解析的外部符号 _main，该符号在函数 ___tmainCRTStartup 中被引用   MSVCRTD.lib</title><link>http://www.cppblog.com/applex1122/archive/2010/09/22/81247.html#127311</link><dc:creator>苏菲</dc:creator><author>苏菲</author><pubDate>Wed, 22 Sep 2010 00:23:00 GMT</pubDate><guid>http://www.cppblog.com/applex1122/archive/2010/09/22/81247.html#127311</guid><description><![CDATA[#include&lt;iostream&gt;<br>using namespace std;<br>template&lt;typename T&gt;<br>class Arry<br>{<br>	public:<br>		Arry(){}<br>		~Arry(){delete []t;}<br>		friend ostream &amp;operator&lt;&lt;(ostream &amp;os,Arry &amp;A);//重载输出运算符<br>		friend istream &amp;operator&gt;&gt;(istream &amp;is,Arry &amp;A);//重载输入运算符<br>	private:<br>		int t[10];<br>};<br><br> <br>ostream &amp;operator&lt;&lt;(ostream &amp;os,Arry  &amp;A)<br>{<br>	for(int i=0;i&lt;10;i++)<br>	{<br>		os&lt;&lt;A.t[i]&lt;&lt;&quot;   &quot;;<br>	}<br>	os&lt;&lt;endl;<br>	return os;<br>}<br>		<br>//template&lt;typename T&gt;<br>istream &amp;operator&gt;&gt;(istream &amp;is,Arry &amp;A)<br>{<br>	for(int i=0;i&lt;10;i++)<br>	{<br>		is&gt;&gt;A.t[i];<br>	}<br>	return is;<br>}<br><br>int main()<br>{<br>	Arry  A;<br>	cin&gt;&gt;A;<br>	cout&lt;&lt;A;<br>	return 0;<br>}<img src ="http://www.cppblog.com/applex1122/aggbug/127311.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cppblog.com/applex1122/" target="_blank">苏菲</a> 2010-09-22 08:23 <a href="http://www.cppblog.com/applex1122/archive/2010/09/22/81247.html#127311#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: D3DXCreateText 函数</title><link>http://www.cppblog.com/applex1122/archive/2010/07/19/80291.html#120763</link><dc:creator>anorm</dc:creator><author>anorm</author><pubDate>Mon, 19 Jul 2010 04:29:00 GMT</pubDate><guid>http://www.cppblog.com/applex1122/archive/2010/07/19/80291.html#120763</guid><description><![CDATA[支持汉字的现实吧，只要在中文的操作系统下面我试过能显示。<img src ="http://www.cppblog.com/applex1122/aggbug/120763.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cppblog.com/applex1122/" target="_blank">anorm</a> 2010-07-19 12:29 <a href="http://www.cppblog.com/applex1122/archive/2010/07/19/80291.html#120763#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: 在头文件中引入stdafx.h导致的问题</title><link>http://www.cppblog.com/applex1122/archive/2010/01/20/106017.html#106051</link><dc:creator>Leix</dc:creator><author>Leix</author><pubDate>Wed, 20 Jan 2010 01:50:00 GMT</pubDate><guid>http://www.cppblog.com/applex1122/archive/2010/01/20/106017.html#106051</guid><description><![CDATA[这个嘛，应该是M$的问题，如果不包含可以编译的话，就注释掉。否者就另想它辙了。stdafx.h是被VS默认包含进去的。<img src ="http://www.cppblog.com/applex1122/aggbug/106051.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cppblog.com/applex1122/" target="_blank">Leix</a> 2010-01-20 09:50 <a href="http://www.cppblog.com/applex1122/archive/2010/01/20/106017.html#106051#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item></channel></rss>