public
class numbertest
public
static
void containone(int i)
else
}public
static string revicestr(string str)
return arr.tostring();
}public
static
void count(string findstr,string sourcestr)
while(true)
system.out.println("出現位置:"+(sourcestr.indexof(temp)-findstr.length()));
}system.out.println("出現位置:"+(sourcestr.lastindexof(temp)-findstr.length()));
system.out.println(findstr+" 在 "+sourcestr+" 出現:"+count+" 次");
}public
static
void convert10to2or8or16(int i,int choise)
stringbuffer str = new stringbuffer();
int j = i;
while(j>0)
j = j/choise;
}if(choise == 8)
else
if(choise == 16)
system.out.println(i+" 轉換成 "+choise+" 進製:"+revicestr(str.tostring())); }}
Array的部分方法
concat 連線兩個或更多的陣列,並返回結果。join 把陣列的所有元素放入乙個字串。元素通過指定的分隔符進行分隔。pop 刪除並返回陣列的最後乙個元素。shift 刪除並返回陣列的第乙個元素 push 向陣列的末尾新增乙個或更多元素,並返回新的長度。unshift 向陣列的開頭新增乙個或更多元素...
Vue的部分方法
vue.js 讀音 vju 類似於 view 是一套構建使用者介面的漸進式框架。vue 只關注檢視層,採用自底向上增量開發的設計。vue 的目標是通過盡可能簡單的 api 實現響應的資料繫結和組合的檢視元件。首先要注意的是vue必須要等到整個頁面載入完成之後才能完整渲染使用 所以它開始是下面這樣 在...
jq的部分方法
1.獲取可視區寬度 window width 2.獲取可視區高度 window height innerwidth padding width outerwidth padding width border margin 1.offset 方法 window offset 獲取元素距離documen...