首页 > TAG信息列表 > timeNumber
【Java】时间转换(可用于计算耗时场景)
public class TimeCalc { /** * 将指定数字转换为时间(格式: 00:00:00,000) * * @param timeNumber 如 216059999 * @return 如 60:00:59,999 */ public static String calc(long timeNumber) { long hUnit = 60 * 60 * 1000;【Python】时间转换(可用于计算耗时场景)
#!/usr/bin/env python # -*- coding: utf-8 -*- """ @Time :2022/3/31 23:55 @Author : @File :TimeCalc.py @Version :1.0 @Function: """ class TimeCalc: @staticmethod def calc(timeNumber: int) -> str: