01 2016 档案

摘要:首先看下面一段代码: 1 /* 2 * 参数的传递 3 */ 4 class Value{ 5 int i = 15; 6 } 7 public class Test { 8 public static void main(String[] args) { 9 T... 阅读全文
posted @ 2016-01-13 16:26 njuptlwh 阅读(344) 评论(0) 推荐(0) 编辑
摘要:1 eclipse 常用方法1.0 eclipse智能感知设置Windows->Preferences->Java->Editor->Content Assist, 下图红色圆圈内,“Auto activation delay”默认值为200毫秒, “Auto activation triggers... 阅读全文
posted @ 2016-01-08 11:16 njuptlwh 阅读(279) 评论(0) 推荐(0) 编辑
摘要:1). 源码 1 //十进制数转十六进制 2 import java.util.Scanner; 3 4 public class Test01{ 5 public static void main(String[] args){ 6 while(true) 7 ... 阅读全文
posted @ 2016-01-06 16:52 njuptlwh 阅读(936) 评论(0) 推荐(0) 编辑
摘要:上面代码的运行结果:1). 首先看第三行:Person p01 = new Person();等号左边创建类"Person"的一个变量"p01"(在内存的栈空间中创建一个“p01”):等号右边会在堆空间中开辟一块区域来存放“p01”的,并且把地址传给“p01”:目前类中的成员变量初始值都是默认值:1... 阅读全文
posted @ 2016-01-06 16:18 njuptlwh 阅读(476) 评论(0) 推荐(1) 编辑
摘要:? 可以是type/int/char/enum/String(only support jdk 1.7.0) 阅读全文
posted @ 2016-01-04 17:08 njuptlwh 阅读(113) 评论(0) 推荐(0) 编辑
摘要:十六进制转十进制: 1 public class Test02{ 2 3 public static void main(String[] args){ 4 while(true) 5 { 6 System.out.pri... 阅读全文
posted @ 2016-01-04 16:58 njuptlwh 阅读(281) 评论(0) 推荐(0) 编辑