<?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>maxfactory &#124; モバイル関連の技術メモ &#187; Array</title>
	<atom:link href="http://maxfactory.biz/blog/tag/array/feed/" rel="self" type="application/rss+xml" />
	<link>http://maxfactory.biz/blog</link>
	<description>モバイル（フィーチャーフォン、スマートフォン、タブレット）を中心とした技術メモ</description>
	<lastBuildDate>Thu, 14 Jul 2011 08:19:44 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>[flex3]配列のコピー</title>
		<link>http://maxfactory.biz/blog/2009/06/09/flex3%e9%85%8d%e5%88%97%e3%81%ae%e3%82%b3%e3%83%94%e3%83%bc/</link>
		<comments>http://maxfactory.biz/blog/2009/06/09/flex3%e9%85%8d%e5%88%97%e3%81%ae%e3%82%b3%e3%83%94%e3%83%bc/#comments</comments>
		<pubDate>Tue, 09 Jun 2009 08:56:54 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[as3]]></category>
		<category><![CDATA[flex入門]]></category>
		<category><![CDATA[Array]]></category>
		<category><![CDATA[flex3]]></category>

		<guid isPermaLink="false">http://maxfactory.biz/wp/?p=99</guid>
		<description><![CDATA[Arrayクラスでは、配列をコピーする組み込みメソッドがないので、 お手製になります。 import flash.utils.ByteArray; function clone(source:Object):*{ var [...]]]></description>
			<content:encoded><![CDATA[<p>Arrayクラスでは、配列をコピーする組み込みメソッドがないので、<br />
お手製になります。</p>
<div class="statement">
<pre>import flash.utils.ByteArray;

function clone(source:Object):*{
    var myBA:ByteArray = new ByteArray();
    myBA.writeObject(source);
    myBA.position = 0;
    return(myBA.readObject());
}</pre>
</div>
<p>○参考<br />
<a href="http://livedocs.adobe.com/flex/2_jp/docs/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Parts&amp;file=00001882.html">http://livedocs.adobe.com/flex/2_jp/docs/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Parts&amp;file=00001882.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://maxfactory.biz/blog/2009/06/09/flex3%e9%85%8d%e5%88%97%e3%81%ae%e3%82%b3%e3%83%94%e3%83%bc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

