摘要:
1.概述 //构造方法1: File file1 = new File("E://abc/a.txt"); //构造方法2: File file2 = new File("E://abc","a.txt"); //构造方法3: File file = new File("E://abc"); Fil 阅读全文
posted @ 2020-06-21 21:10
指尖下的世界
阅读(165)
评论(0)
推荐(0)
摘要:
1.概述 案例1: public static void main(String[] args) { //不死神兔,求第20个月兔子的对数 //每个月兔子对数:1,1,2,3,5,8,13..... System.out.println(new Digui().f(20));//6765 } pub 阅读全文
posted @ 2020-06-21 21:08
指尖下的世界
阅读(141)
评论(0)
推荐(0)
摘要:
ArrayList<String> strings = new ArrayList<String>(); strings.add("aa"); strings.add("dd"); strings.add("cc"); strings.add("ee"); System.out.println(st 阅读全文
posted @ 2020-06-21 09:11
指尖下的世界
阅读(224)
评论(0)
推荐(0)