摘要:
常用API Integer类 Integer类概述 包装一个对象中的原始类型 int 的值 Integer类构造方法 方法名 说明 public Integer(int value) 根据 int 值创建 Integer 对象(过时) public Integer(String s) 根据 Stri 阅读全文
摘要:
常用API包装类 基本类型包装类的作用将基本数据类型封装成对象的好处在于可以在对象中定义更多的功能方法操作该数据常用的操作之一:用于基本数据类型与字符串之间的转换 基本类型对应的包装类 基本数据类型 包装类 byte Byte short Short int Integer long Long fl 阅读全文
摘要:
常用API Runtime类 public static Runtime getRuntime() //返回单例的Runtime实例 public void exit(int status) //终止当前的虚拟机 public void addShutdownHook(Thread hook) // 阅读全文
摘要:
常用API Runtime类 Java中,Runtime类提供了许多的API 来与java runtime environment进行交互 执行一个进程。 调用垃圾回收。 查看总内存和剩余内存。 Runtime是单例的,可以通过Runtime.getRuntime()得到这个单例。 阅读全文
摘要:
常用API Object public static String toString(对象) //返回参数中对象的字符串表示形式。 public static String toString(对象, 默认字符串) //返回对象的字符串表示形式。 public static Boolean isNul 阅读全文
摘要:
常用API System类 public static void exit(int status) //终止当前运行的 Java 虚拟机,非零表示异常终止 public static long currentTimeMillis() //返回当前时间(以毫秒为单位) 阅读全文
摘要:
常用API Math类 Math 包含执行基本数字运算的方法 Math中方法的调用方式 Math类中无构造方法,但内部的方法都是静态的,则可以通过 类名.进行调用 Math类的常用方法 public static int abs(int a) //返回参数的绝对值 public static dou 阅读全文