public static long currentTimeMillis() :返回以毫秒为单位的当前时间。 public static void arraycopy(Object src, int srcPos, Object dest, int destPos, int length) :将 数组中指定的数据拷贝到另一个数组中。
lang包下不需要导包,静态方法直接点就可以了。
currentTimeMillis方法:
System.currentTimeMillis()
获取现在的系统时间到原点(1970年01月01日0点0分0秒)的毫秒值。
用途:
计算代码开始到结束使用的时间。
arraycopy方法:
public static void arraycopy(Object src, int srcPos, Object dest, int destPos, int length) :将 数组中指定的数据拷贝到另一个数组中。
Integer i = 4;//自动装箱。相当于Integer i = Integer.valueOf(4);
i = i + 5;//等号右边:将i对象转成基本数值(自动拆箱) i.intValue() + 5;
//加法运算完成后,再次装箱,把基本数值转成对象。
基本类型与字符串之间的转换
public static byte parseByte(String s) :将字符串参数转换为对应的byte基本类型。 public static short parseShort(String s) :将字符串参数转换为对应的short基本类型。 public static int parseInt(String s) :将字符串参数转换为对应的int基本类型。 public static long parseLong(String s) :将字符串参数转换为对应的long基本类型。 public static float parseFloat(String s) :将字符串参数转换为对应的float基本类型。 public static double parseDouble(String s) :将字符串参数转换为对应的double基本类型。 public static boolean parseBoolean(String s) :将字符串参数转换为对应的boolean基本类型。