<?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; Flash lite(携帯Flash)、Flex、widgetなどの技術メモ &#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>Flash lite(携帯Flash)、Flex、widgetなどの技術メモ</description>
	<lastBuildDate>Thu, 29 Jul 2010 09:00:55 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.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(so [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fmaxfactory.biz%2Fblog%2F2009%2F06%2F09%2Fflex3%25e9%2585%258d%25e5%2588%2597%25e3%2581%25ae%25e3%2582%25b3%25e3%2583%2594%25e3%2583%25bc%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fmaxfactory.biz%2Fblog%2F2009%2F06%2F09%2Fflex3%25e9%2585%258d%25e5%2588%2597%25e3%2581%25ae%25e3%2582%25b3%25e3%2583%2594%25e3%2583%25bc%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<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>
