摘要: package com.day9.Wrapclass; public class Demo4Integer { /** * A:案例演示 * JDK5的新特性自动装箱和拆箱 * Integer ii = 100; * ii += 200; * B:注意事项 * 在使用时,Integer x = nu 阅读全文
posted @ 2017-12-28 22:52 简简单单zjl 阅读(1037) 评论(0) 推荐(0) 编辑
摘要: package com.day9.Wrapclass; public class Demo3Integer { /** * 常见对象(String和int类型的相互转换) * A:int -- String * a:和""进行拼接//推荐 * b:public static String value 阅读全文
posted @ 2017-12-28 22:43 简简单单zjl 阅读(413) 评论(0) 推荐(0) 编辑
摘要: package com.day9.Wrapclass; public class Demo2Integer { /** * A:Integer类概述 * 通过JDK提供的API,查看Integer类的说明 * Integer 类在对象中包装了一个基本类型 int 的值, * 该类提供了多个方法,能在 阅读全文
posted @ 2017-12-28 22:22 简简单单zjl 阅读(1337) 评论(0) 推荐(0) 编辑
摘要: package com.day9.Array; import java.util.Arrays; public class Demo1Arrays { /** * public static String toString(int[] a),返回数组指定的字符串形式 * public static 阅读全文
posted @ 2017-12-28 22:00 简简单单zjl 阅读(134) 评论(0) 推荐(0) 编辑
摘要: package com.day5.test; public class Test4 { /** * @param args * 二分查找,查找元素的索引 * 前提:数组元素有序 */ public static void main(String[] args) { int[] arr={1,2,3, 阅读全文
posted @ 2017-12-28 21:20 简简单单zjl 阅读(132) 评论(0) 推荐(0) 编辑
摘要: package com.day5.test; public class Test3 { /** * @param args * 选择排序 */ public static void main(String[] args) { int[] arr={23,5,67,34,100,73,120,2,4, 阅读全文
posted @ 2017-12-28 19:53 简简单单zjl 阅读(143) 评论(0) 推荐(0) 编辑
摘要: package com.day8.StringBuffer; public class Demo7StringBuffer { /** *常见对象(String和StringBuffer分别作为参数传递) * A:形式参数问题 * String作为参数传递 * StringBuffer作为参数传递 阅读全文
posted @ 2017-12-28 18:36 简简单单zjl 阅读(2705) 评论(0) 推荐(0) 编辑