摘要:
任意进制转换为十进制: 十进制转换为任意进制: 阅读全文
摘要:
JAVA程序运行过程: 1.编译javac:把java源文件编译成class字节码文件。 2.运行java:运行class文件。 标识符(给类、方法、变量起名): 1.以字母(采用Unicode字符集)、下划线、$开头 2.其余部分可以是:字母(采用Unicode字符集)、下划线、$、数字 3.不能 阅读全文
摘要:
package GameFrame; import java.awt.Color;import java.awt.Font;import java.awt.Frame;import java.awt.Graphics;import java.awt.event.WindowAdapter;impor 阅读全文
摘要:
常见异常分类: ArithmeticException - 如试图除以0 NullPointerException - 当程序访问一个空对象的成员变量或方法。 ClassCastException - 类型强制转换错误 ArrayIndexOutOfBoundsException - 访问的元素下标 阅读全文
摘要:
package TestFileTree; import java.io.File; public class TestFileTree { public static void main(String[] args){ File file = new File("C:/Users/iwang/De 阅读全文
摘要:
java.io.File类:文件和目录路径名的抽象表示形式 通过File对象可以访问文件的属性。 public boolean canRead() public boolean canWritre() public boolean exists() public boolean isDirector 阅读全文
摘要:
package myCalendar; import java.text.DateFormat;import java.text.ParseException;import java.text.SimpleDateFormat;import java.util.Calendar;import jav 阅读全文
摘要:
Calendar属于java.util类中,所以使用前要加import java.util.Calendar; 作用:在时刻和日期之间做转化! GregorianCalendar是Calendar的子类! package MyDate; import java.util.Calendar;impor 阅读全文
摘要:
SimpleDateFormat是DateFormat的子类,它给我提供了一些方法完成字符串和时间对象的转化! DateFormat为抽象类,不能自己创建自己的实例。它只有一个子类SimpleDateFormat DateFormat属于java.text类,在使用前应该加import java.t 阅读全文
摘要:
在标准Java类库中包含一个Date类。它的对象表示一个特定的瞬间,精确到毫秒。 Java中时间的表示说白了也是数字,是从:标准纪元1970.1.1 0点开始到某个时刻的毫秒数(此时long的值为0,时间再往前为负数,时间往后为正数。long所能表示的范围为:-2^31~2^(32-1) ),类型是 阅读全文