douxiangui5011 2018-10-08 05:02
浏览 1951
已采纳

如何使用go获得两位数的当前小时和分钟?

I'm using time package in go for taking the time into string but there is a problem is that when the time is 9:00 AM or 10:00 AM then the below code will output for 9:00AM is 90 and for 10:00AM is 100 but if there is time 9:11AM or 10:11AM then the output for 9:11AM is 911 and for 10:11AM is 1011 The problem is if there is 10:00AM then it will give the minutes in two digits number not in single single digit. The code I'm using is

hours, minutes, _ := time.Now().Clock()
fmt.Println(hours, minutes)

I want that it will produce the result in two digit like 10:00AM then it will give 1000 and if there is 10:11AM then it will give me 1011.

Basically I want to convert them into the string using:-

 currUTCTimeInString := strconv.Itoa(hours) + strconv.Itoa(minutes)

Can anybody help me for this.

  • 写回答

2条回答 默认 最新

  • dongyong1942 2018-10-08 05:36
    关注

    For example,

    package main
    
    import (
        "fmt"
        "time"
    )
    
    func main() {
        hours, minutes, _ := time.Now().Clock()
        currUTCTimeInString := fmt.Sprintf("%d%02d", hours, minutes)
        fmt.Println(currUTCTimeInString)
        hours, minutes = 9, 0
        currUTCTimeInString = fmt.Sprintf("%d%02d", hours, minutes)
        fmt.Println(currUTCTimeInString)
        hours, minutes = 10, 0
        currUTCTimeInString = fmt.Sprintf("%d%02d", hours, minutes)
        fmt.Println(currUTCTimeInString)
    }
    

    Output:

    2300
    900
    1000
    

    Or, using strconv,

    package main
    
    import (
        "fmt"
        "strconv"
    )
    
    func main() {
        hours, minutes := 9, 00
        h := strconv.Itoa(hours)
        m := strconv.Itoa(minutes)
        if minutes < 10 {
            m = "0" + m
        }
        hm := h + m
        fmt.Println(hm)
    }
    

    Output:

    900
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 基于卷积神经网络的声纹识别
  • ¥15 Python中的request,如何使用ssr节点,通过代理requests网页。本人在泰国,需要用大陆ip才能玩网页游戏,合法合规。
  • ¥100 为什么这个恒流源电路不能恒流?
  • ¥15 有偿求跨组件数据流路径图
  • ¥15 写一个方法checkPerson,入参实体类Person,出参布尔值
  • ¥15 我想咨询一下路面纹理三维点云数据处理的一些问题,上传的坐标文件里是怎么对无序点进行编号的,以及xy坐标在处理的时候是进行整体模型分片处理的吗
  • ¥15 CSAPPattacklab
  • ¥15 一直显示正在等待HID—ISP
  • ¥15 Python turtle 画图
  • ¥15 stm32开发clion时遇到的编译问题