【程序1】題目:古典問題:有一對兔子,從出生後第3個月起每個月都生一對兔子,小兔子長到第四個月後每個月又生一對兔子,假如兔子都不死,問每個月的兔子總數為多少? 1.程式分析: 兔子的規律為數列1,1,2,3,5,8,13,21....public class exp2{ public static void main(String args[]){ int i=0; for (i=1;i<=20;i++)System.out.println(f(i));}public static int f(in
複製程式碼程式碼如下://param objArr the expanded object of Array. //param newLength the length of the new Array public static Object getNewArr(Object objArr, int newLength) { if (!objArr.getClass().isray()) {//判斷類型return null; } // get the array's componentType
功能實作:1、圖片載入類別ImageLoader實作:1)用阻塞佇列儲存要圖片:BlockingQueue images = new ArrayBlockingQueue<>(2);2)用圖片eof表示圖片佇列結束:Image eof = new WritableImage(1, 1eof表示圖片佇列結束:Image eof = new WritableImage(1, 1 );3)循環讀取指定圖片,由於是阻塞隊列,所以當隊列滿的時候線程會自動阻塞.複製代碼代碼如下:public void r