常数截断为整数

huangapple go评论118阅读模式
英文:

Constant truncated to integer

问题

以下是翻译好的部分:

以下GO程序出现错误:

  1. ./fft.go:13: 常量-6.28319截断为整数
  2. ./fft.go:13: 无法将类型为int的-7 * k / N用作类型为float64的赋值

程序:

  1. package main
  2. import (
  3. "math"
  4. "fmt"
  5. )
  6. func main() {
  7. fmt.Println("Hello world ",math.E)
  8. var k, N int = 1, 10
  9. var ans float64 = 0
  10. var c float64 = (-2.0 * math.Pi * k) / N
  11. x := make([]float64,N)
  12. for i := 0; i < len(x); i++ {
  13. x[i] = 1
  14. }
  15. ans = 0
  16. for i := 0; i < N; i++ {
  17. ans += x[i] * math.E
  18. }
  19. fmt.Println(ans)
  20. }

为什么我不能在float64类型中使用int类型?

英文:

The following GO program gives the error:

  1. ./fft.go:13: constant -6.28319 truncated to integer
  2. ./fft.go:13: cannot use -7 * k / N (type int) as type float64 in assignment

Program:

  1. package main
  2. import (
  3. &quot;math&quot;
  4. &quot;fmt&quot;
  5. )
  6. func main() {
  7. fmt.Println(&quot;Hello world &quot;,math.E)
  8. var k, N int = 1, 10
  9. var ans float64 = 0
  10. var c float64 = (-2.0 * math.Pi * k) / N
  11. x := make([]float64,N)
  12. for i := 0; i &lt; len(x); i++ {
  13. x[i] = 1
  14. }
  15. ans = 0
  16. for i := 0; i &lt; N; i++ {
  17. ans += x[i] * math.E
  18. }
  19. fmt.Println(ans)
  20. }

Why cant I use an int in a type of float64 ?

答案1

得分: 17

Replace

  1. var c float64 = (-2.0 * math.Pi * k) / N

by

  1. var c float64 = (-2.0 * math.Pi * float64(k)) / float64(N)

To quote the spec:

> Conversions are required when different numeric types are mixed in an
> expression or assignment. For instance, int32 and int are not the same
> type even though they may have the same size on a particular
> architecture.

Go uses static typing and doesn't automatically convert between numeric types. The reason is probably to avoid some errors. For instance, what value and what type should float64(2.5) * int(2) yield? Should the result be int(5)? int(4)? float64(5.0)? In Go, this isn't an issue. The Go FAQ has more to say on this.


@jnml points out that, in this case, the following is enough:

  1. var c float64 = -2 * math.Pi / float64(N)
英文:

Replace

  1. var c float64 = (-2.0 * math.Pi * k) / N

by

  1. var c float64 = (-2.0 * math.Pi * float64(k)) / float64(N)

To quote the spec:

> Conversions are required when different numeric types are mixed in an
> expression or assignment. For instance, int32 and int are not the same
> type even though they may have the same size on a particular
> architecture.

Go uses static typing and doesn't automatically convert between numeric types. The reason is probably to avoid some errors. For instance, what value and what type should float64(2.5) * int(2) yield? Should the result be int(5)? int(4)? float64(5.0)? In Go, this isn't an issue. The Go FAQ has more to say on this.


@jnml points out that, in this case, the following is enough:

  1. var c float64 = -2 * math.Pi / float64(N)

huangapple
  • 本文由 发表于 2013年4月22日 23:45:27
  • 转载请务必保留本文链接:https://go.coder-hub.com/16151199.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定