上一页 1 ··· 53 54 55 56 57 58 59 60 61 ··· 74 下一页
摘要: 成功后的模样步骤一:选择工具栏中的Navigate步骤二:选项 Navigate中的 show in选项----->Navigate 阅读全文
posted @ 2017-02-20 11:25 Philtell 阅读(118) 评论(0) 推荐(0) 编辑
摘要: 成功后的模样 步骤一:选择工具栏中的Navigate 步骤二:选项 Navigate中的 show in选项----->Navigate 阅读全文
posted @ 2017-02-20 11:24 Philtell 阅读(412) 评论(0) 推荐(0) 编辑
摘要: private static int getRandom(int count) { return (int) Math.round(Math.random() * (count)); } private static String string = "abcd... 阅读全文
posted @ 2017-02-14 09:47 Philtell 阅读(1088) 评论(0) 推荐(0) 编辑
摘要: private static int getRandom(int count) { return (int) Math.round(Math.random() * (count)); } privat... 阅读全文
posted @ 2017-02-14 09:47 Philtell 阅读(110) 评论(0) 推荐(0) 编辑
摘要: Problem Description现有 n 个从小到大排列的数组成的序列。需要对这个序列进行 c 次操作。每次操作有两种类型:操作 1:插入一个数 v 到序列中,并保持有序。 操作 2:输出当前的序列。 bLue 并不太擅长序列操作,所以他想来请求你的帮助,你能帮助他完成这个任... 阅读全文
posted @ 2017-02-09 20:42 Philtell 阅读(151) 评论(0) 推荐(0) 编辑
摘要: Problem Description现有 ... 阅读全文
posted @ 2017-02-09 20:42 Philtell 阅读(88) 评论(0) 推荐(0) 编辑
摘要: 基本类型和包装类之间经常需要互相转换,以 I... 阅读全文
posted @ 2017-02-08 20:09 Philtell 阅读(105) 评论(0) 推荐(0) 编辑
摘要: 基本类型和包装类之间经常需要互相转换,以 Integer 为例(其他几个包装类的操作雷同哦):在 JDK1.5 引入自动装箱和拆箱的机制后,包装类和基本类型之间的转换就更加轻松便利了。那什么是装箱和拆箱呢?我们分别来看下装箱:把基本类型转换成包装类,使其具有对象的性质,又可分为手动... 阅读全文
posted @ 2017-02-08 20:08 Philtell 阅读(249) 评论(0) 推荐(0) 编辑
摘要: Math 类位于 java.lang 包中,... 阅读全文
posted @ 2017-02-08 19:52 Philtell 阅读(87) 评论(0) 推荐(0) 编辑
摘要: Math 类位于 java.lang 包中,包含用于执行基本数学运算的方法, Math 类的所有方法都是静态方法,所以使用该类中的方法时,可以直接使用类名.方法名,如: Math.round(); 常用的方法:通过案例我们来认识一下他们的使用吧!!运行结果:PS: Math 类还提... 阅读全文
posted @ 2017-02-08 19:51 Philtell 阅读(102) 评论(0) 推荐(0) 编辑
上一页 1 ··· 53 54 55 56 57 58 59 60 61 ··· 74 下一页