douzhao9608 2018-03-26 18:33
浏览 1105
已采纳

int * time.Second何时工作,什么时候在golang中不工作?

Why does time.Sleep(5 * time.Second) work fine, but:

x := 180
time.Sleep(15 / x * 60 * time.Second)

does not? I get a type mismatch error (types int64 and time.Duration). Given the error, I understand more of why the latter fails than why the former succeeds.

  • 写回答

1条回答 默认 最新

  • dsgdfg30210 2018-03-26 18:36
    关注

    In Go, a numeric literal (e.g. 60) is an untyped constant. That means it will be silently coerced to whatever type is appropriate for the operation where it's being used. So when you say:

    var x := 5 * time.Second
    

    Then the type is inferred from time.Second to be a time.Duration, and thus the literal 5 is also treated as a time.Duration. If there's nothing to infer a type from, it will assume a type ("bool, rune, int, float64, complex128 or string") and use that. So:

    x := 180
    

    Yields x with a type of int.

    However, when you do some operation involving something with a type - like, say a variable x that is an int - then you have two types and one must be converted for the operation to be legal.

    So, to the original question "When does int * time.Second work and when does it not in golang?", int * time.Second actually never works in Go. But 5 * time.Second isn't the same as int * time.Second.

    This is touched on in the Go tour:

    An untyped constant takes the type needed by its context.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 乌班图ip地址配置及远程SSH
  • ¥15 怎么让点阵屏显示静态爱心,用keiluVision5写出让点阵屏显示静态爱心的代码,越快越好
  • ¥15 PSPICE制作一个加法器
  • ¥15 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 java 的protected权限 ,问题在注释里
  • ¥15 这个是哪里有问题啊?