亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? array2.as

?? swf 解碼源程序, 純C代碼
?? AS
字號:
// makeswf -v 6 -r 1 -o array2-6.swf array2.as// makeswf -v 7 -r 1 -o array2-7.swf array2.as// TODO: version 5 compatible version, inserting and reading, sorton// define our own function to print arrays, that shows nested arrays nicelyfunction pretty (arr, lvl) {  var i;  var str = "[";  for (i = 0; i < arr.length; i++) {    if (arr[i] != null && arr[i].constructor == Array) {      str = str + pretty (arr[i], lvl + 1);    } else {      str = str + arr[i];    }    if (i != arr.length - 1)      str += ", ";  }  str += "]";  return str;}function mytrace (arr) {  if (arr != null && arr.constructor == Array) {    trace (pretty (arr, 0));  } else {    trace (arr);  }}mytrace ("## Static properties");mytrace (Array.CASEINSENSITIVE);mytrace (Array.DESCENDING);mytrace (Array.UNIQUESORT);mytrace (Array.RETURNINDEXEDARRAY);mytrace (Array.NUMERIC);old = Array.NUMERIC;Array.NUMERIC = 3;mytrace (Array.NUMERIC);Array.NUMERIC = old;mytrace (Array.NUMERIC);mytrace ("## Contructor");mytrace ("# Normal usage");mytrace (new Array ());				// empty arraymytrace (new Array (5));			// array with 5 empty spotsmytrace (new Array (1, "b", new Object ()));	// array with 3 pre-determined elementsmytrace (Array ());mytrace (Array (5));mytrace (Array (1, "b", new Object ()));mytrace ([]);mytrace ([1, "b", new Object ()]);mytrace ("# Special cases");mytrace (new Array (1000));			// big numbermytrace (new Array (-4));				// negative number as argumentmytrace (new Array ("3"));			// one string preseting number as argumentmytrace (new Array (new String (3)));		// one string preseting number as argumentmytrace (new Array (new Number (3)));		// number, but not a primitive typemytrace (new Array (3.5));			// floating point numbersmytrace (new Array (3.4));mytrace (new Array (3.6));mytrace (new Array ([], ["a", "b", [1, 2]]));	// nested arraysmytrace ("## length");mytrace ("# Normal usage");a = new Array (1, "b", "c", 4);mytrace (a.length);a = new Array (1, new Object (), "c");mytrace (a.length);a = new Array (1337);mytrace (a.length);a = new Array ();mytrace (a.length);mytrace (a);a.length = 10;mytrace (a.length);mytrace (a);mytrace ("# Special cases");a = new Array ();			// making it smaller than largest valuea.length = 10;a[9] = 1;mytrace (a);a.length = 5;mytrace (a);mytrace (a[9]);a.length = 10;mytrace (a);a = new Array (1, "b", "c", 4);		// negative valuea.length = -4;mytrace (a);mytrace (a.length);a = new Array ();			// setting negative variable while negative lengtha.length = -4;a[-2] = "x";mytrace (a);mytrace (a.length);a = new Array (1, "b", "c", 4);		// floating point valuesa.length = 3.4;mytrace (a);mytrace (a.length);a = new Array (1, "b", "c", 4);		// floating point valuesa.length = 3.5;mytrace (a);mytrace (a.length);a = new Array (1, "b", "c", 4);		// floating point valuesa.length = 3.6;mytrace (a);mytrace (a.length);a = new Array (1, "b", "c", 4);		// non-numeric valuesa.length = new Object ();mytrace (a);mytrace (a.length);a = new Array (1, "b", "c", 4);a.length = "har";mytrace (a);mytrace (a.length);a = new Array (1, "b", "c", 4);a.length = "3";mytrace (a);mytrace (a.length);a = new Array (1, "b", "c", 4);a.length = null;mytrace (a);mytrace (a.length);a = new Array (1, "b", "c", 4);a.length = undefined;mytrace (a);mytrace (a.length);mytrace ("## toString");mytrace ("# Normal usage");a = new Array ("a", "b", "c");mytrace (a.toString ());mytrace ("# Special cases");a = new Array ();			// empty arraymytrace (a.toString ());a = new Array (20);			// only undefined valuesmytrace (a.toString ());mytrace ("## join");mytrace ("# Normal usage");a = new Array ("a", "b", "c");mytrace (a.join ());			// default delimeter: ,mytrace (a.join (":"));			// custom delimetermytrace ("# Special cases");a = new Array ();			// empty arraymytrace (a.join ());mytrace (a.join (":"));a = new Array (1, "b", 3);mytrace (a.join (31));			// non-string parametersmytrace (a.join (new Object ()));mytrace (a.join (null));mytrace (a.join (undefined));mytrace (a.join ("lal", 31));		// many parametersmytrace (a.join (new Object (), 3, 3));a = new Array (20);			// only undefined valuesmytrace (a.join ());mytrace (a.join (":"));mytrace ("## Push");mytrace ("# Normal usage");a = new Array (1, 2, 3);mytrace (a.push (4));mytrace (a);mytrace (a.push ("a"));mytrace (a);mytrace ("# Special cases");a = new Array (1, 2, 3);mytrace (a.push (4, 5));		// more than one elementmytrace (a);mytrace (a.push ());			// pushing nothingmytrace (a);mytrace (a.push (["a", "b", "c"]));	// pushing another arraymytrace (a);a = new Array ();			// pushing when weird lengtha.length = "weird";mytrace (a.push ("weirder"));mytrace (a["weird"]);mytrace (a);a = new Array ();			// pushing nothing, weird lengtha.length = "weird";mytrace (a.push ());mytrace (a["weird"]);mytrace (a);a = new Array ();			// pushing on empty arraymytrace (a.push (6));mytrace (a);a = new Array (5);			// pushing on array with only undefined valuesmytrace (a.push (6));mytrace (a);a = new Array ();			// pushing on array with negative lengtha.length = -3;mytrace (a.push ("x"));mytrace (a[-3]);mytrace (a.length);mytrace ("## Pop");mytrace ("# Normal usage");a = new Array (1, "b", "c", 4);mytrace (a.pop ());mytrace (a);mytrace (a.pop ());mytrace (a);mytrace ("# Special cases");a = new Array ();			// emptymytrace (a.pop ());mytrace (a);a = new Array ();			// empty, weird lengtha.length = "weird";mytrace (a.pop ());mytrace (a);a = new Array (1, "b", "c", 4);		// use parametersmytrace (a.pop (5));mytrace (a);mytrace (a.pop ("c", "b"));mytrace (a);mytrace ("## Unshift");mytrace ("# Normal usage");a = new Array (1, 2, 3);mytrace (a.unshift (4));mytrace (a);mytrace (a.unshift ("a"));mytrace (a);mytrace ("# Special cases");a = new Array (1, 2, 3);mytrace (a.unshift (4, 5));		// more than one elementmytrace (a);mytrace (a.unshift ());			// unshifting nothingmytrace (a);a1 = new Array ("a", "b", "c");		// unshifting another arraymytrace (a.unshift (a1));mytrace (a);a = new Array ();			// unshifting on empty arraymytrace (a.unshift (6));mytrace (a);a = new Array (5);			// unshifting on array with only undefined valuesmytrace (a.unshift (6));mytrace (a);mytrace ("## Shift");mytrace ("# Normal usage");a = new Array (1, "b", "c", 4);mytrace (a.shift ());mytrace (a);mytrace (a.shift ());mytrace (a);mytrace ("# Special cases");a = new Array ();			// emptymytrace (a.shift ());mytrace (a);a = new Array (1, "b", "c", 4);	// use parametersmytrace (a.shift (5));mytrace (a);mytrace (a.shift ("b", "c"));mytrace (a);mytrace ("## Reverse");mytrace ("# Normal usage");a = new Array (1, "b", "c", 4);mytrace (a.reverse ());mytrace (a);a = new Array (1, new Object (), "c");mytrace (a.reverse ());mytrace (a);mytrace ("# Special cases");a = new Array ();			// emptymytrace (a.reverse ());mytrace (a);a = new Array ("a");			// one elementmytrace (a.reverse ());mytrace (a);a1 = new Array ([a, "b"]);		// array inside arraymytrace (a1.reverse ());mytrace (a1);a = new Array (1, "b", "c", 4);		// use parametersmytrace (a.reverse (4));mytrace (a);a = new Array (1, "b", "c", 4);mytrace (a.reverse ("b", "c"));mytrace (a);mytrace ("## Concat");mytrace ("# Normal usage");a = new Array (1, "b", "c", 4);a1 = new Array (1, new Object (), "c");mytrace (a.concat (a1));mytrace (a);mytrace (a1);a = new Array (1, "b", "c", 4);mytrace (a.concat (1, new Object (), "c"));mytrace (a);mytrace ("# Special cases");a = new Array ();			// empty arraysa1 = new Array ();mytrace (a.concat (a1));mytrace (a);mytrace (a1);a = new Array (1, "b", "c", 4);		// selfmytrace (a.concat (a));mytrace (a);a = new Array (1, ["b", "c"], 4);	// nested arraysa1 = new Array ([1, new Object ()], "c");mytrace (a.concat (a1));mytrace (a);mytrace (a1);mytrace ("## Slice");mytrace ("# Normal usage");a = new Array (1, "b", "c", 4);mytrace (a.slice (1, 3));mytrace (a);mytrace (a.slice (0, -2));mytrace (a);mytrace (a.slice (-2));mytrace (a);mytrace ("# Special cases");a = new Array (1, "b", "c", 4);		// empty arraymytrace (a.slice ());mytrace (a);a = new Array (1, "b", "c", 4);mytrace (a.slice ());			// without parametersmytrace (a);mytrace (a.slice (0, -2, 4, 3, "d"));	// with extra parametersmytrace (a);mytrace (a.slice (3, 20));		// with too much plusmytrace (a);mytrace (a.slice (20));mytrace (a);mytrace (a.slice (0, -5));		// with too much minusmytrace (a);mytrace (a.slice (-20));mytrace (a);mytrace (a.slice (1, 2, 3, 4, 5));	// extra parametersmytrace (a);mytrace (a.slice (1, 2, "hah", new Object ()));mytrace (a);mytrace ("## Splice");mytrace ("# Normal usage");a = new Array (1, "b", "c", 4);mytrace (a.splice (1));mytrace (a);a = new Array (1, "b", "c", 4);mytrace (a.splice (0, 1));mytrace (a);a = new Array (1, "b", "c", 4);mytrace (a.splice (-3, 2, new Object (), 3));mytrace (a);mytrace ("# Special cases");a = new Array ();			// empty arraymytrace (a.splice (0));mytrace (a);mytrace (a.splice (0, 0, "a", "b"));mytrace (a);// TODOmytrace ("## Sort");// not all things can be tested by tracing, because it's possible to have many valid// results that look the same, for example for: ["a", "A"].sort (Array.CASEINSENSITIVE)function sortall (arr, func, must, mustnot) {  for (i = 0; i < Array.NUMERIC * 2; i++) {    if ((must == 0 || (i & must) == must) && (mustnot == 0 || (i & mustnot) == 0)) {      var arr_copy = arr.concat ();      if (func != null) {	mytrace ("sort customfunc " + i + " " + pretty (arr, 0));	mytrace (arr_copy.sort (func, i));      } else {	mytrace ("sort " + i + " " + pretty (arr, 0));	mytrace (arr_copy.sort (i));      }      mytrace (arr_copy);    }  }}function compare_array_length (a, b) {  if (a.length > b.length) {    return 1;  } else if (a.length < b.length) {    return -1;  } else {    return 0;  }}mytrace ("# Normal usage");a = new Array ("a", "B", "c", "v", 1, 9, 10);sortall (a, null, 0, 0);a = new Array ();a[1] = 1;a[3] = "a";a[4] = 10;a[5] = "B";a[10] = "c";a[12] = 9;a[15] = "v";sortall (a, null, 0, Array.RETURNINDEXEDARRAY);a = new Array ("a", "B", "c", 1, 9, 10, "c");sortall (a, null, Array.UNIQUESORT, 0);a = new Array ("a", "B", "c", 1, 9, 10, "C");sortall (a, null, Array.UNIQUESORT | Array.CASEINSENSITIVE, 0);sortall (a, null, 0, Array.UNIQUESORT | Array.CASEINSENSITIVE);a = new Array ([1,2,3], [1,2,3,4], [], [1,2], [1]);sortall (a, compare_array_length, 0, 0);mytrace ("## Fake Array (Object with Array's methods)");fake = new Object();fake.join = Array.prototype.join;fake.toString = Array.prototype.toString;fake.push = Array.prototype.push;fake.pop = Array.prototype.pop;fake.shift = Array.prototype.shift;fake.unshift = Array.prototype.unshift;fake.reverse = Array.prototype.reverse;fake.concat = Array.prototype.concat;fake.slice = Array.prototype.slice;fake.splice = Array.prototype.splice;fake.sort = Array.prototype.sort;trace (fake.push);trace (fake.push ("a", "b", "c", "x", "z"));trace (fake.length + ": " + fake.join (":"));trace (fake.pop ());trace (fake.length + ": " + fake.join (":"));trace (fake.unshift ("y"));trace (fake.length + ": " + fake.join (":"));trace (fake.unshift ("z"));trace (fake.length + ": " + fake.join (":"));fake.length++;trace (fake.length + ": " + fake.join (":"));trace (fake.shift ());trace (fake.length + ": " + fake.join (":"));trace (fake.reverse ());trace (fake.length + ": " + fake.join (":"));trace (fake.concat ("a", fake).join (":"));trace (fake.length + ": " + fake.join (":"));trace (fake.slice (1, 3));trace (fake.length + ": " + fake.join (":"));trace (fake.splice (2, 3, "i", "j"));trace (fake.length + ": " + fake.join (":"));trace (fake.sort ());trace (fake.length + ": " + fake.join (":"));mytrace ("## Done");loadMovie ("FSCommand:quit", "");

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
蜜桃视频一区二区三区在线观看| **网站欧美大片在线观看| 一区二区三区精品久久久| 欧美日韩一区二区三区四区 | 在线综合视频播放| 韩日av一区二区| 国产精品视频第一区| 欧美性视频一区二区三区| 91在线免费播放| 天涯成人国产亚洲精品一区av| 久久亚洲二区三区| 91成人免费在线| 国产麻豆91精品| 天天操天天综合网| 亚洲欧洲无码一区二区三区| 日韩你懂的电影在线观看| 色婷婷综合久色| 国产精品一卡二| 日本免费新一区视频 | 精品国产凹凸成av人网站| 91在线观看免费视频| 久久99国产精品久久99果冻传媒| 亚洲精品水蜜桃| 国产日韩欧美精品综合| 91精品婷婷国产综合久久竹菊| 99在线精品视频| 久久电影国产免费久久电影| 亚洲国产综合色| 国产精品国产三级国产有无不卡| 欧美日韩久久不卡| 色就色 综合激情| 96av麻豆蜜桃一区二区| 国产美女视频91| 国产一区二区精品在线观看| 激情综合色播激情啊| 裸体在线国模精品偷拍| 日本欧美一区二区三区乱码 | 大陆成人av片| 国产·精品毛片| 国产成人综合网站| 国产成人精品综合在线观看| 国产不卡视频在线播放| 成人97人人超碰人人99| 91在线视频免费91| 欧美天堂亚洲电影院在线播放| 欧美日韩综合不卡| 日韩一区二区三区视频在线观看 | 91精品国产91久久综合桃花 | 亚洲国产一区二区视频| 亚洲国产三级在线| 日本一区中文字幕| 国产一区二区主播在线| 成人综合婷婷国产精品久久| 色综合久久久久久久久久久| 欧美在线观看18| 日韩欧美www| 国产欧美日韩综合精品一区二区| 国产精品天干天干在观线| 亚洲欧美激情在线| 首页综合国产亚洲丝袜| 国产一区二区三区日韩| 成人av免费在线播放| 欧美视频自拍偷拍| 日韩三级免费观看| 国产欧美va欧美不卡在线| 亚洲男人的天堂在线观看| 视频一区视频二区在线观看| 国产露脸91国语对白| 色天使色偷偷av一区二区| 欧美精品日日鲁夜夜添| 久久久久一区二区三区四区| 亚洲另类春色校园小说| 美女网站一区二区| 99国产精品国产精品久久| 9191成人精品久久| 中文无字幕一区二区三区 | 久久久亚洲国产美女国产盗摄| 中文字幕一区免费在线观看| 日韩和的一区二区| 成人深夜在线观看| 欧美老女人在线| 中文字幕av一区二区三区| 五月天精品一区二区三区| 国产成人av一区二区三区在线 | 欧美午夜影院一区| 久久久久国产精品厨房| 亚洲国产乱码最新视频| 国产成人av电影在线| 欧美日韩国产一区二区三区地区| 久久久久国产精品麻豆| 天天综合日日夜夜精品| 99久久免费精品| 亚洲精品一区二区精华| 亚洲电影第三页| av福利精品导航| 精品国产污污免费网站入口 | 亚洲人成影院在线观看| 麻豆精品视频在线观看视频| 色欧美片视频在线观看| 久久无码av三级| 秋霞电影网一区二区| 色噜噜夜夜夜综合网| 中文字幕巨乱亚洲| 精品一区二区在线播放| 欧美日本一区二区在线观看| 亚洲三级电影全部在线观看高清| 黄页视频在线91| 欧美精品tushy高清| 一区二区三区久久久| 99在线精品视频| 日本一区二区电影| 国产乱码精品一区二区三区av| 日韩写真欧美这视频| 日韩成人免费电影| 欧美综合一区二区| 亚洲精品国产无天堂网2021 | 精品久久人人做人人爽| 首页国产欧美日韩丝袜| 欧美网站一区二区| 亚洲精品v日韩精品| 91网站在线观看视频| 日韩一区在线免费观看| a级高清视频欧美日韩| 国产午夜精品久久| 国产剧情在线观看一区二区| 精品久久久久香蕉网| 久久成人免费日本黄色| 欧美大片国产精品| 毛片不卡一区二区| 精品国内二区三区| 国产麻豆午夜三级精品| 久久尤物电影视频在线观看| 狠狠网亚洲精品| 国产性天天综合网| 成人爱爱电影网址| 136国产福利精品导航| 99久久婷婷国产综合精品| 综合久久国产九一剧情麻豆| 色婷婷国产精品| 亚洲国产aⅴ天堂久久| 欧美夫妻性生活| 麻豆91小视频| 国产欧美日韩久久| 91丝袜呻吟高潮美腿白嫩在线观看| 最近日韩中文字幕| 在线视频国产一区| 亚洲成人免费视| 日韩免费视频一区二区| 国产ts人妖一区二区| 国产精品国产成人国产三级 | 国产欧美一区二区三区沐欲 | 欧美精品一区二区在线播放 | 成人a免费在线看| 国产精品国产三级国产普通话蜜臀 | 国产欧美一区二区三区在线老狼| 国产91精品欧美| 一区二区三区四区在线免费观看| 欧美日韩在线播放三区四区| 久久精品二区亚洲w码| 国产亚洲精品精华液| 色偷偷成人一区二区三区91| 午夜精品久久久久久久久久久| 日韩一级大片在线观看| 成人手机电影网| 午夜精品一区二区三区免费视频| 欧美一级淫片007| 大桥未久av一区二区三区中文| 一区二区三区四区乱视频| 日韩你懂的在线观看| 99国产欧美另类久久久精品| 五月婷婷欧美视频| 国产日韩欧美高清在线| 欧美三级欧美一级| 国产毛片精品国产一区二区三区| 亚洲激情中文1区| 久久蜜桃av一区二区天堂| 日本乱码高清不卡字幕| 久久99热这里只有精品| 亚洲视频一区在线| 精品乱人伦小说| 欧美在线观看视频在线| 国产成人小视频| 日韩电影在线观看一区| 国产精品久久久久久亚洲毛片| 在线观看91av| 91美女在线观看| 韩国三级中文字幕hd久久精品| 亚洲精品免费视频| 国产欧美精品一区二区色综合 | 欧美女孩性生活视频| 国产高清精品网站| 日韩中文字幕一区二区三区| 国产精品久久久久三级| 欧美精品一区二区三| 欧美日韩国产一区| 99精品1区2区| 国产成人免费av在线| 韩国一区二区在线观看| 日本中文字幕一区二区视频| 亚洲卡通欧美制服中文|