<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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>Comments on: Exceptions in Constructors and Destructors</title>
	<atom:link href="http://www.davinciunltd.com/2007/12/exceptions-in-constructors-and-destructors/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.davinciunltd.com/2007/12/exceptions-in-constructors-and-destructors/</link>
	<description>Jim McKeeth's blog on creative and innovative Delphi programming.</description>
	<lastBuildDate>Wed, 01 Feb 2012 16:40:53 -0500</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Alister Christie</title>
		<link>http://www.davinciunltd.com/2007/12/exceptions-in-constructors-and-destructors/comment-page-1/#comment-90</link>
		<dc:creator>Alister Christie</dc:creator>
		<pubDate>Wed, 05 Dec 2007 20:13:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.davinciunltd.com/2007/12/exceptions-in-constructors-and-destructors/#comment-90</guid>
		<description>Thanks for the mention ;-).  I made this video because of a discussion I had with another Delphi community member about some of the lazy exception handling I&#039;ve done in some of my other videos, I was kind of hoping that this one would make up for it.</description>
		<content:encoded><![CDATA[<p>Thanks for the mention <img src='http://www.davinciunltd.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> .  I made this video because of a discussion I had with another Delphi community member about some of the lazy exception handling I&#8217;ve done in some of my other videos, I was kind of hoping that this one would make up for it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mitja</title>
		<link>http://www.davinciunltd.com/2007/12/exceptions-in-constructors-and-destructors/comment-page-1/#comment-89</link>
		<dc:creator>Mitja</dc:creator>
		<pubDate>Tue, 04 Dec 2007 08:58:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.davinciunltd.com/2007/12/exceptions-in-constructors-and-destructors/#comment-89</guid>
		<description>There is one more way of doing it (if assuming that destructors do not raise exceptions):
var S1,S2:TSomeObject;
begin
  S2:=nil;
  S1:=TSomeObject.Create;
  try
    // Some Code 1
    S2:=TSomeObject.Create;
    // Some Code 2
  finally
    S1.Free;
    S2.Free;
  end;</description>
		<content:encoded><![CDATA[<p>There is one more way of doing it (if assuming that destructors do not raise exceptions):<br />
var S1,S2:TSomeObject;<br />
begin<br />
  S2:=nil;<br />
  S1:=TSomeObject.Create;<br />
  try<br />
    // Some Code 1<br />
    S2:=TSomeObject.Create;<br />
    // Some Code 2<br />
  finally<br />
    S1.Free;<br />
    S2.Free;<br />
  end;</p>
]]></content:encoded>
	</item>
</channel>
</rss>

