<?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/"
	>

<channel>
	<title>Online Programming Tutorials</title>
	<atom:link href="http://programmingtutorials.us/feed" rel="self" type="application/rss+xml" />
	<link>http://programmingtutorials.us</link>
	<description></description>
	<pubDate>Sun, 19 Apr 2009 03:01:50 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Expression Templates</title>
		<link>http://programmingtutorials.us/expression-templates-74.html</link>
		<comments>http://programmingtutorials.us/expression-templates-74.html#comments</comments>
		<pubDate>Wed, 18 Jun 2008 12:42:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[C]]></category>

		<category><![CDATA[expression templates]]></category>

		<guid isPermaLink="false">http://programmingtutorials.us/expression-templates-73.html</guid>
		<description><![CDATA[Abstract: Expression Templates is a C++ technique for passing expressions as function arguments. The expression can be inlined into the function body, which results in faster and more convenient code than C-style callback functions. This technique can also be used to evaluate vector and matrix expressions in a single pass without temporaries. In preliminary benchmark [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Abstract:</strong> Expression Templates is a C++ technique for passing expressions as function arguments. The expression can be inlined into the function body, which results in faster and more convenient code than C-style callback functions. This technique can also be used to evaluate vector and matrix expressions in a single pass without temporaries. In preliminary benchmark results, one compiler evaluates vector expressions at 95-99.5% efficiency of hand- coded C using this technique (for long vectors). The speed is 2-15 times that of a conventional C++ vector class.</p>
<p><a href="http://ubiety.uwaterloo.ca/~tveldhui/papers/Expression-Templates/exprtmpl.html">Continue</a></p>
]]></content:encoded>
			<wfw:commentRss>http://programmingtutorials.us/expression-templates-74.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Template Metaprograms</title>
		<link>http://programmingtutorials.us/template-metaprograms-73.html</link>
		<comments>http://programmingtutorials.us/template-metaprograms-73.html#comments</comments>
		<pubDate>Wed, 18 Jun 2008 12:41:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[C]]></category>

		<category><![CDATA[template metaprograms]]></category>

		<guid isPermaLink="false">http://programmingtutorials.us/?p=72</guid>
		<description><![CDATA[The introduction of templates to C++ added a facility whereby the compiler can act as an interpreter. This makes it possible to write programs in a subset of C++ which are interpreted at compile time. Language features such as for loops and if statements can be replaced by template specialization and recursion. The first examples [...]]]></description>
			<content:encoded><![CDATA[<p>The introduction of templates to C++ added a facility whereby the compiler can act as an interpreter. This makes it possible to write programs in a subset of C++ which are interpreted at compile time. Language features such as for loops and if statements can be replaced by template specialization and recursion. The first examples of these techniques were written by Erwin Unruh and circulated among members of the ANSI/ISO C++ standardization committee [1]. These programs didn&#8217;t have to be executed &#8212; they generated their output at compile time as warning messages. For example, one program generated warning messages containing prime numbers when compiled.</p>
<p><a href="http://ubiety.uwaterloo.ca/~tveldhui/papers/Template-Metaprograms/meta-art.html">Continue</a></p>
<p> </p>
]]></content:encoded>
			<wfw:commentRss>http://programmingtutorials.us/template-metaprograms-73.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>C++ Exception Handling</title>
		<link>http://programmingtutorials.us/c-exception-handling-72.html</link>
		<comments>http://programmingtutorials.us/c-exception-handling-72.html#comments</comments>
		<pubDate>Wed, 18 Jun 2008 12:40:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[C]]></category>

		<category><![CDATA[exception handling]]></category>

		<guid isPermaLink="false">http://programmingtutorials.us/?p=71</guid>
		<description><![CDATA[Exception handling can be a very personal and complex topic. The C language gave the programmer very few exception handling capabilities, as the programmers wanted more control over exceptions themselves. Thankfully, the C++ standards committee crafted a simple, but powerful form of exception handling for the C++ language that still gives the programmer quite a [...]]]></description>
			<content:encoded><![CDATA[<p>Exception handling can be a very personal and complex topic. The C language gave the programmer very few exception handling capabilities, as the programmers wanted more control over exceptions themselves. Thankfully, the C++ standards committee crafted a simple, but powerful form of exception handling for the C++ language that still gives the programmer quite a bit of control. Many coders eschew this method that I will present shortly, so more power to you. Most of the information I learned on C++ exception handling was from the wonderful <a href="http://msdn.microsoft.com/library/default.asp?URL=/library/welcome/dsmsdn/deep051099.htm">Deep C++ column on MSDN</a>.</p>
<p><a href="http://www.flipcode.com/archives/C_Exception_Handling.shtml">Continue</a></p>
]]></content:encoded>
			<wfw:commentRss>http://programmingtutorials.us/c-exception-handling-72.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Casting in C++: Bringing Safety and Smartness to Your Programs</title>
		<link>http://programmingtutorials.us/casting-in-c-bringing-safety-and-smartness-to-your-programs-71.html</link>
		<comments>http://programmingtutorials.us/casting-in-c-bringing-safety-and-smartness-to-your-programs-71.html#comments</comments>
		<pubDate>Wed, 18 Jun 2008 12:39:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[C]]></category>

		<category><![CDATA[casting C++]]></category>

		<guid isPermaLink="false">http://programmingtutorials.us/?p=70</guid>
		<description><![CDATA[The new C++ standard is full of powerful additions to the language: templates, run-time type identification (RTTI), namespaces, and exceptions to name a few. Rather than talk about one of these &#8220;major&#8221; extensions, I will discuss one of the minor extensions: the new C++ casting operators.
Continue
]]></description>
			<content:encoded><![CDATA[<p>The new C++ standard is full of powerful additions to the language: templates, run-time type identification (RTTI), namespaces, and exceptions to name a few. Rather than talk about one of these &#8220;major&#8221; extensions, I will discuss one of the minor extensions: the new C++ <em>casting operators</em>.</p>
<p><a href="http://www.acm.org/crossroads/xrds3-1/ovp3-1.html">Continue</a></p>
]]></content:encoded>
			<wfw:commentRss>http://programmingtutorials.us/casting-in-c-bringing-safety-and-smartness-to-your-programs-71.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Separating Interface and Implementation in C++</title>
		<link>http://programmingtutorials.us/separating-interface-and-implementation-in-c-70.html</link>
		<comments>http://programmingtutorials.us/separating-interface-and-implementation-in-c-70.html#comments</comments>
		<pubDate>Wed, 18 Jun 2008 12:38:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[C]]></category>

		<category><![CDATA[implementation C++]]></category>

		<category><![CDATA[separating interface]]></category>

		<guid isPermaLink="false">http://programmingtutorials.us/?p=69</guid>
		<description><![CDATA[This article discusses three related problems in the design of C++ classes and surveys five of the solutions to them found in the literature. These problems and solutions are considered together because they relate to separating the design choices that are manifested in the interface from those that are made in implementing the class. The [...]]]></description>
			<content:encoded><![CDATA[<p>This article discusses three related problems in the design of C++ classes and surveys five of the solutions to them found in the literature. These problems and solutions are considered together because they relate to separating the design choices that are manifested in the interface from those that are made in implementing the class. The problems are:</p>
<p><a href="http://www.octopull.demon.co.uk/c++/implementation_hiding.html">Continue</a></p>
]]></content:encoded>
			<wfw:commentRss>http://programmingtutorials.us/separating-interface-and-implementation-in-c-70.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Optimizing C++ - the WWW version</title>
		<link>http://programmingtutorials.us/optimizing-c-the-www-version-69.html</link>
		<comments>http://programmingtutorials.us/optimizing-c-the-www-version-69.html#comments</comments>
		<pubDate>Wed, 18 Jun 2008 12:36:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[C]]></category>

		<category><![CDATA[optimizing C++]]></category>

		<category><![CDATA[www version]]></category>

		<guid isPermaLink="false">http://programmingtutorials.us/?p=68</guid>
		<description><![CDATA[Imagine that you are about to finish a relatively large program, one that has taken a few weeks or months to write and debug. Just as you are putting the finishing touches on it, you discover that it is either too slow or runs out of memory when you feed it a realistic set of [...]]]></description>
			<content:encoded><![CDATA[<p>Imagine that you are about to finish a relatively large program, one that has taken a few weeks or months to write and debug. Just as you are putting the finishing touches on it, you discover that it is either too slow or runs out of memory when you feed it a realistic set of input data. You sigh, and start the task of optimizing it.</p>
<p><a href="http://www.steveheller.com/opt/">Continue</a></p>
]]></content:encoded>
			<wfw:commentRss>http://programmingtutorials.us/optimizing-c-the-www-version-69.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>More C++</title>
		<link>http://programmingtutorials.us/more-c-68.html</link>
		<comments>http://programmingtutorials.us/more-c-68.html#comments</comments>
		<pubDate>Wed, 18 Jun 2008 12:35:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[C]]></category>

		<category><![CDATA[more c++]]></category>

		<guid isPermaLink="false">http://programmingtutorials.us/?p=67</guid>
		<description><![CDATA[This document aims to provide people who have done an introductory C++ course the skills required to write bigger programs. Online versions are at http://www-h.eng.cam.ac.uk/help/tpl/languages/C++/doc/doc.html (HTML); http://www-h.eng.cam.ac.uk/help/tpl/languages/C++/doc/doc.pdf (PDF); and http://www-h.eng.cam.ac.uk/help/documentation/docsource/index.html (LaTeX).
Continue
]]></description>
			<content:encoded><![CDATA[<div>This document aims to provide people who have done an introductory C++ course the skills required to write bigger programs. Online versions are at <a name="tex2html1" href="http://www-h.eng.cam.ac.uk/help/tpl/languages/C++/doc/doc.html">http://www-h.eng.cam.ac.uk/help/tpl/languages/C++/doc/doc.html</a> (HTML); <a name="tex2html2" href="http://www-h.eng.cam.ac.uk/help/tpl/languages/C++/doc/doc.pdf">http://www-h.eng.cam.ac.uk/help/tpl/languages/C++/doc/doc.pdf</a> (PDF); and <a name="tex2html3" href="http://www-h.eng.cam.ac.uk/help/documentation/docsource/index.html">http://www-h.eng.cam.ac.uk/help/documentation/docsource/index.html</a> (LaTeX).</div>
<div><a href="http://www-h.eng.cam.ac.uk/help/tpl/languages/C++/doc/doc.html">Continue</a></div>
]]></content:encoded>
			<wfw:commentRss>http://programmingtutorials.us/more-c-68.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>C++ tutorial for C users</title>
		<link>http://programmingtutorials.us/c-tutorial-for-c-users-67.html</link>
		<comments>http://programmingtutorials.us/c-tutorial-for-c-users-67.html#comments</comments>
		<pubDate>Mon, 16 Jun 2008 08:37:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[C]]></category>

		<category><![CDATA[C users]]></category>

		<category><![CDATA[C++ tutorial]]></category>

		<guid isPermaLink="false">http://programmingtutorials.us/?p=66</guid>
		<description><![CDATA[This text enunciates and illustrates features and basic principles of C++. It is aimed at experienced C users who wish to learn C++. It can also be interesting for beginner C++ users who leaved out some possibilities of the language. A printed version is available at http://www.lulu.com/content/258714
Continue
]]></description>
			<content:encoded><![CDATA[<p>This text enunciates and illustrates features and basic principles of C++. It is aimed at experienced C users who wish to learn C++. It can also be interesting for beginner C++ users who leaved out some possibilities of the language. A printed version is available at <a href="http://www.lulu.com/content/258714">http://www.lulu.com/content/258714</a></p>
<p><a href="http://www.4p8.com/eric.brasseur/cppcen.html">Continue</a></p>
]]></content:encoded>
			<wfw:commentRss>http://programmingtutorials.us/c-tutorial-for-c-users-67.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Scientific Computing: C++ versus Fortran</title>
		<link>http://programmingtutorials.us/scientific-computing-c-versus-fortran-66.html</link>
		<comments>http://programmingtutorials.us/scientific-computing-c-versus-fortran-66.html#comments</comments>
		<pubDate>Mon, 16 Jun 2008 08:37:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[C]]></category>

		<category><![CDATA[Fortran]]></category>

		<category><![CDATA[scientific computing]]></category>

		<category><![CDATA[versus]]></category>

		<guid isPermaLink="false">http://programmingtutorials.us/?p=65</guid>
		<description><![CDATA[The language C++ has features which make it attractive for scientific computing: templates for generic programming, operator overloading for expressiveness, and object-orientation for abstraction and code reuse. Despite these features, the scientific computing community has been reluctant to adopt C++, partly due to performance problems. In the early 1990s, C++ programs were much slower than [...]]]></description>
			<content:encoded><![CDATA[<p>The language C++ has features which make it attractive for scientific computing: templates for generic programming, operator overloading for expressiveness, and object-orientation for abstraction and code reuse. Despite these features, the scientific computing community has been reluctant to adopt C++, partly due to performance problems. In the early 1990s, C++ programs were much slower than their Fortran counterparts &#8212; typical benchmarks showed C++ lagging behind Fortran&#8217;s performance by anywhere from 20% to a factor of ten. Users of C++ often rewrote the number crunching parts of their programs in Fortran to get acceptable performance.</p>
<p><a href="http://ubiety.uwaterloo.ca/~tveldhui/papers/DrDobbs2/drdobbs2.html">Continue</a></p>
]]></content:encoded>
			<wfw:commentRss>http://programmingtutorials.us/scientific-computing-c-versus-fortran-66.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>INTRODUCTION TO OBJECT-ORIENTED PROGRAMMING USING C++</title>
		<link>http://programmingtutorials.us/introduction-to-object-oriented-programming-using-c-65.html</link>
		<comments>http://programmingtutorials.us/introduction-to-object-oriented-programming-using-c-65.html#comments</comments>
		<pubDate>Mon, 16 Jun 2008 08:36:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[C]]></category>

		<category><![CDATA[object oriented]]></category>

		<guid isPermaLink="false">http://programmingtutorials.us/?p=64</guid>
		<description><![CDATA[This course was intended for students who want to learn more about object-oriented programming. Concepts presented are exemplified using the C++ programming language. This course is not intended to learn C++ in all its details. If you are interested in the language, please check out the Suggested Reading page for a reference to other online [...]]]></description>
			<content:encoded><![CDATA[<p><span class="xl">T</span>his course was intended for students who want to learn more about object-oriented programming. Concepts presented are exemplified using the C++ programming language. This course is <strong>not</strong> intended to learn C++ in all its details. If you are interested in the language, please check out the <a href="http://programmingtutorials.us/wp-admin/reading.html">Suggested Reading</a> page for a reference to other online tutorials. </p>
<p><a href="http://www.gnacademy.org/text/cc/">Continue</a></p>
]]></content:encoded>
			<wfw:commentRss>http://programmingtutorials.us/introduction-to-object-oriented-programming-using-c-65.html/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
