<?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>JacksonDunstan.com &#187; constructor</title>
	<atom:link href="http://jacksondunstan.com/articles/tag/constructor/feed" rel="self" type="application/rss+xml" />
	<link>http://jacksondunstan.com</link>
	<description>Mastering AS3</description>
	<lastBuildDate>Mon, 21 May 2012 09:00:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Constructing Arrays</title>
		<link>http://jacksondunstan.com/articles/1151</link>
		<comments>http://jacksondunstan.com/articles/1151#comments</comments>
		<pubDate>Mon, 04 Apr 2011 09:00:20 +0000</pubDate>
		<dc:creator>jackson</dc:creator>
				<category><![CDATA[AS3]]></category>
		<category><![CDATA[array]]></category>
		<category><![CDATA[constructor]]></category>
		<category><![CDATA[syntax]]></category>

		<guid isPermaLink="false">http://jacksondunstan.com/?p=1151</guid>
		<description><![CDATA[In AS3, you can create an Array can be created with special syntax: myArray = []. You can even fill the Array with values all in one go: myArray = [1,2,3,4,5]. This is a nice shorthand that saves some typing compared to using the constructor: myArray = new Array(1,2,3,4,5). But, which way is faster? Today [...]]]></description>
		<wfw:commentRss>http://jacksondunstan.com/articles/1151/feed</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Class Bootup Part 2</title>
		<link>http://jacksondunstan.com/articles/1038</link>
		<comments>http://jacksondunstan.com/articles/1038#comments</comments>
		<pubDate>Mon, 31 Jan 2011 10:00:52 +0000</pubDate>
		<dc:creator>jackson</dc:creator>
				<category><![CDATA[AS3]]></category>
		<category><![CDATA[bootup]]></category>
		<category><![CDATA[class]]></category>
		<category><![CDATA[constructor]]></category>
		<category><![CDATA[initializer]]></category>
		<category><![CDATA[order]]></category>
		<category><![CDATA[package]]></category>
		<category><![CDATA[parent]]></category>
		<category><![CDATA[static]]></category>
		<category><![CDATA[super]]></category>

		<guid isPermaLink="false">http://jacksondunstan.com/?p=1038</guid>
		<description><![CDATA[Today&#8217;s article follows up on an article I wrote way back in August of 2009 about the order of operations when you use a class. In the original article I showed the order of field initializers and constructors. Today I&#8217;m expanding on that to show three more chunks of code that are run. Can you [...]]]></description>
		<wfw:commentRss>http://jacksondunstan.com/articles/1038/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Super Is (Really) Optional!</title>
		<link>http://jacksondunstan.com/articles/189</link>
		<comments>http://jacksondunstan.com/articles/189#comments</comments>
		<pubDate>Mon, 13 Jul 2009 09:00:23 +0000</pubDate>
		<dc:creator>jackson</dc:creator>
				<category><![CDATA[AS3]]></category>
		<category><![CDATA[constructor]]></category>
		<category><![CDATA[functions]]></category>

		<guid isPermaLink="false">http://jacksondunstan.com/?p=189</guid>
		<description><![CDATA[Like Java, AS3 has a super() function you can call from your constructor to call your parent class&#8217; constructor. As it turns out, this is more optional than you might think. The super() function works like this: class Parent &#123; public function Parent&#40;val:int=0&#41; &#123; trace&#40;&#34;Parent constructor got: &#34; + val&#41;; &#125; &#125; class Child extends [...]]]></description>
		<wfw:commentRss>http://jacksondunstan.com/articles/189/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

