码迷,mamicode.com
首页 > 编程语言 > 详细

Java笔记

时间:2018-04-16 13:40:33      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:main   line   动态数组   java笔记   remove   set   scanner   color   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笔记

标签:main   line   动态数组   java笔记   remove   set   scanner   color   java   

原文地址:https://www.cnblogs.com/hkxy125/p/8855388.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!