- 博客(4)
- 收藏
- 关注
原创 自动装箱 和自动拆箱
Integer i=new Integer(2);Integer j=new Integer(2);System.out.println(ij);//比较的是地址System.out.println(i.equals(j));//equals被重写比较的是数据//在jvm中(-128~127)之间有个常量池Integer a=127;//Integer a=new Integer(127...
2019-01-15 18:41:54 139
原创 使用集合简单写出斗地主的开始效果
先把牌存储都Map集合中把键存入list集合中,然后用Collections.shuffer(list);进行洗牌,然后在用四个集合进行接收玩家1,玩家2,玩家3,和底牌;再给各个玩家的牌进行排序显示;package 斗地主;import java.util.ArrayList;import java.util.Collections;import java.util.HashMap;i...
2019-01-15 18:35:02 190
原创 计算闰年的几种方法
java求闰年的几种方式//是平年还是闰年public static void year(){GregorianCalendar g=new GregorianCalendar();Scanner sc=new Scanner(System.in);//要输入的年份int year=sc.nextInt();//设置时间为3月1日(外国月份0-11月)g.set(year, 2, ...
2019-01-04 19:31:38 670
原创 随机双色球
java新手使用Scanner Random做了一个简单的双色球你可以进行进行输入,与随机数判断,是否中奖。也可以输出随机数,得到一组号码;代码:直接在main()中写: Random ra=new Random(); Scanner sc=new Scanner(System.in); int[] balls =new int[7]; int[] user=new int[7];...
2018-12-22 11:23:54 414
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人