概述
一直以来都用Date或者Calendar类来表示日期,当项目中需要设定一个没有日月年格式,只有小时,分钟,秒的时间格式时,选择使用java.sql.Time类。
Time类的一些使用注意事项:
初始化Time time= new Time(10000);数字代表毫秒数,当Time time= new Time(0)时,表示的时间是08:00:00;所以new Time(10000)表示在08:00:00的基础上加了10秒
即此时time为08:00:10;
Time time= new Time(0);
time.setHours(9);
time.setMinutes(10);
time.setSeconds(10);
System.out.println(time.toString());
输出:09:10:10
当没有设置time.setSeconds(10);时
Time time= new Time(1000);
time.setHours(9);
time.setMinutes(10);
System.out.println(time.toString());
输出:09:10:01
当Time time= new Time(0);
time.setHours(9);
time.setMinutes(10);
time.setSeconds(80);
System.out.println(time.toString());
输出:09:11:20;
最后
以上就是自信百合为你收集整理的关于java.sql.Time的使用的全部内容,希望文章能够帮你解决关于java.sql.Time的使用所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复