记录java学习
char m = 'a';
char res1 = m + 1;//这里的m是一个变量,需要进行类型转换 改为:char res1=(char)(m+1);
char res2 = 'a' + 1;//两个常量参与运算编译时会直接合并为运算后的结果,等价于char res=98
System.out.println(res1);
System.out.println(res2);
下面这个是统计程序运行所需要的的时间
package com.hqyj.javacode.datatype;
/**
* 案例-统计程序运行时间
*/
public class HomeWork1 {
public static void main(String[] args) throws InterruptedException {
//1.获取程序运行前的时间
long startTime = System.currentTimeMillis();
//2.需要计算运行时间的程序
Thread.sleep(3000);//
//3.获取运行后的时间
long endTime = System.currentTimeMillis();
//4.打印程序运行时间
System.out.println("程序运行时间为"+(EndTime-startTime1)+"毫秒");
}
}