Java笔记
Posted Ctfes
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java笔记相关的知识,希望对你有一定的参考价值。
1 import java.io.*; 2 import java.util.*; 3 4 public class Main { 5 static int a[]; 6 7 public static void main(String args[]) throws Exception { 8 //System.setIn(new FileInputStream("C:\\Users\\Administrator\\Desktop\\input.txt")); // 输入重定向 9 //System.setOut(new PrintStream("C:\\Users\\Administrator\\Desktop\\output.txt")); // 输出重定向 10 Scanner cin = new Scanner(new BufferedInputStream(System.in)); 11 12 a = new int[3]; 13 Arrays.fill(a, 5); // 用5去填充a数组 14 for(int i : a) { 15 System.out.println(i); 16 } 17 18 ArrayList<Integer> AL = new ArrayList<Integer>(); // 动态数组 19 AL.add(1123); AL.add(7525); AL.add(4554); // 在后面添加元素 20 AL.remove(AL.size() - 1); // 删除最后的元素 21 AL.set(1, 3333); // 相当于 AL[1] = 3333 22 Collections.sort(AL, Collections.reverseOrder()); // 从大到小排序 23 for(int i = 0; i < AL.size(); i++) { 24 System.out.println(AL.get(i)); // AL.get(i) 相当于 AL[0] 25 } 26 27 String s; 28 while(cin.hasNext()) { 29 s = cin.nextLine(); 30 System.out.printf("%s\n", s); 31 } 32 33 cin.close(); 34 } 35 }
以上是关于Java笔记的主要内容,如果未能解决你的问题,请参考以下文章