摘要: 原题如下: Given an array of integers, return indices of the two numbers such that they add up to a specific target. You may assume that each input would h 阅读全文
posted @ 2016-06-25 21:00 pkufork 阅读(245) 评论(0) 推荐(0) 编辑
摘要: Java为每种基本数据类型都提供了对应的对象类型。在Java SE5之前,如果要生成一个数值为7的Integer对象,代码示例:Integer i = new Integer(7);;Java SE5之后,Java提供了新的语法,简化了基本数据类型对象的使用,我们称之为自动装箱(autoboxing 阅读全文
posted @ 2016-06-25 16:37 pkufork 阅读(535) 评论(0) 推荐(0) 编辑