合适小蜜蜂

文章
11
资源
0
加入时间
2年10月17天

ZonedDateTime

LocalDateTime总是表示本地日期和时间,要表示一个带时区的日期和时间,我们就需要ZonedDateTime。可以简单地把ZonedDateTime理解成LocalDateTime加ZoneId。ZoneId是java.time引入的新的时区类,注意和旧的java.util.TimeZone区别。要创建一个ZonedDateTime对象,有以下几种方法,一种是通过now()方法返回当前时间:import java.time.*;public class Main { public

26进制转换为10进制

给定一个Excel表格中的列名称,返回其相应的列序号。例如,A -> 1B -> 2C -> 3...Z -> 26AA -> 27AB -> 28 ...示例 1:输入: “A”输出: 1示例 2:输入: “AB”输出: 28示例 3:输入: “ZY”输出: 701来源:力扣(LeetCode)链接:https://leetcode-cn.com/problems/excel-sheet-column-numb