博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Scanner、Random、ArrayList
阅读量:4951 次
发布时间:2019-06-11

本文共 2206 字,大约阅读时间需要 7 分钟。

1 package day05; 2  3 import java.util.Scanner; 4  5 public class MyDemoScanner { 6  7     public static void main(String[] args) { 8  9         Scanner sc = new Scanner(System.in);10 11         System.out.println("请输入数字: ");12         int keyInput = sc.nextInt();13         System.out.println("输入的数字为 " + keyInput);14     }15 }

 

1 package day05; 2  3 import java.util.Scanner; 4  5 public class MyDemoNm { 6  7     /** 8      * 创建对象时,只有创建对象的语句,却没有把对象地址值赋值给某个变量。虽然是创建对象的简化写法,但是应用 9      * 场景非常有限10      *11      * new 类名(参数列表);12      * */13 14     public static void main(String[] args) {15 16         // new Scanner(System.in).nextInt();17 18         // 作为参数19         input(new Scanner(System.in));20 21         // 作为返回值22         Scanner sc = Sc();23         sc.nextInt();24     }25 26     /**27      * 匿名对象可以作为方法的参数和返回值28      * */29     public static void input(Scanner sc) {30         System.out.println(sc.nextInt());31     }32 33     public static Scanner Sc(){34         return new Scanner(System.in);35     }36 37 }

 

1 package day05; 2  3 import java.util.Random; 4  5 public class DemoR { 6  7     public static void main(String[] args) { 8         Random r = new Random(); 9 10         for (int i = 0; i < 10 ; i++) {11             int randomNum = r.nextInt(10) + 1;12             System.out.println(randomNum);13         }14     }15 }

 

1 import java.util.ArrayList; 2  3 public class DemoAL { 4  5     /** 6      * java.util.ArrayList 是大小可变的数组的实现,存储在内的数据称为元素。此类提供一些方法来操作内部存储 7      * 的元素。  ArrayList 中可不断添加元素,其大小也自动增长。 8      * */ 9 10     public static void main(String[] args) {11 12         ArrayList
list = new ArrayList<>();13 14 String stu1 = "大爷1";15 String stu2 = "大爷2";16 String stu3 = "大爷3";17 18 list.add(stu1);19 list.add(stu2);20 list.add(stu3);21 System.out.println(list);22 System.out.println(list.get(0));23 System.out.println(list.size());24 list.remove(0);25 System.out.println(list);26 27 for (int i = 0; i < list.size() ; i++) {28 System.out.println(list.get(i));29 }30 }31 32 33 }

 

转载于:https://www.cnblogs.com/xiaoxiaolulu/p/11309944.html

你可能感兴趣的文章
2018 Multi-University Training Contest 10 - Count
查看>>
HDU6198 number number number
查看>>
HDU6438 Buy and Resell
查看>>
HDU6446 Tree and Permutation
查看>>
HDU6201 transaction transaction transaction
查看>>
HDU6203 ping ping ping
查看>>
前端小笔记
查看>>
《人人都是产品经理》书籍目录
查看>>
Netsharp系列文章目录结构
查看>>
如何在git bash中运行mysql
查看>>
OO第三阶段总结
查看>>
构建之法阅读笔记02
查看>>
sql server几种读写分离方案的比较
查看>>
初学差分约束
查看>>
HEVC编码学习(一)HM配置
查看>>
通过Spark SQL关联查询两个HDFS上的文件操作
查看>>
软件项目开发的调试手段讨论
查看>>
黑马程序员培训没兄弟会高级
查看>>
51nod1003 阶乘后面0的数量
查看>>
typedef的用法--摘录
查看>>