var 陣列名=new array();
//定義了乙個空 的陣列
var array1 = new array();
//定義了乙個長度為6的陣列
var array2 = new array(6);
// 輸出陣列的每個值都是 undefined
console.log(array2);
//可以直接定義陣列的具體值
var array3 = new array(2018, 04, 10, 2016, 11, 22);
console.log(array3) // [2018, 04, 10, 2016, 11, 22];
// 設定陣列中某個位置的值
array3[0] = 520;
console.log(array3) // [520, 04, 10, 2016, 11, 22];
// 獲取陣列中某個位置的值
console.log(array3[1]) // 04
var 陣列名=;
var array=;
// 定義空陣列
var array=;
var arr=[520, 04, 09, 07, 27, 04, 10];
執行緒建立的兩種方式
建立執行緒的兩種方式 1.繼承thread並重寫方法,在run方法中定義執行緒要執行的任務 class mythread extends thread public class threaddemo1 2.實現runable介面並重寫run方法 class myrunnable implements...
建立執行緒的兩種方式
thread thread new thread catch interruptedexception e system.out.println thread.currentthread getname system.out.println this.getname thread.start thr...
建立執行緒的兩種方式
一 繼承thread類 public class mythead extends thead override public void run public class demo01 二 實現runnable介面 public class myrunnable implements runnable...