`
文章列表
java中有两种包的导入机制,总结如下: 单类型导入(single-type-import),例如import java.io.File; 按需类型导入(type-import-on-demand),例如 import java.io.*; 关于这两种导入类型大家各有所爱,众说纷纭。这里分析一下这两种导入类型的大致工 ...

a common day

      The time is fast,quickly a day is over!       It is a common day,no exciting things,no interesting things or people,I am i,nothing is changed,but the time. I hope i can have a good day and be gained at the follow day.
有时候我们编写完代码后,发现运行结构怎么和自己想象的不一样呢?那很有可能就是没有搞清楚类的加载和初始化的过程。下面让我们先看个例子(Thinking in java): //: c06:Beetle.java // The full process of initialization. class Insect { private int i = 9; protected int j; Insect() { System.out.println("i = " + i + ", j = " + j); j = 39; } ...
1. 概述           本文主要包括以下几个方面:编码基本知识,java,系统软件,url,工具软件等. 在下面的描述中,将以"中文"两个字为例,经查表可以知道其GB2312编码是"d6d0 cec4",Unicode编码为"4e2d 6587",UTF 编码就是"e4b8ad e69687"。注意,这两个字没有iso8859-1编码,但可以用iso8859-1编码来"表示"。  2. 编码基本知识         最早的编码是iso8859-1,和ascii编码相似。但为了方便表示各种各 ...
Global site tag (gtag.js) - Google Analytics