Why am I getting "interface conversion: interface is int32" for converting a list integer element to a string?

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

Why am I getting "interface conversion: interface is int32" for converting a list integer element to a string?

问题

新手学习Go语言...我写了一个程序来移除存储在列表中的重复整数。当我运行removeDuplicates函数的以下测试时,我得到了以下错误,指向linked_test.go中的这一行:testString += strconv.Itoa(e.Value.(int))。为什么会出现这个错误,我该如何修复它?我在testList中存储整数,并使用e.Value获取它们,并使用*.(int)*进行类型转换。

  1. panic: interface conversion: interface is int32, not int [recovered]
  2. panic: interface conversion: interface is int32, not int

linked_test.go

  1. package linked
  2. import (
  3. "container/list"
  4. "strconv"
  5. "testing"
  6. )
  7. func TestDuplicates(t *testing.T) {
  8. var (
  9. testList = list.New()
  10. exampleList = list.New()
  11. testString string = ""
  12. )
  13. testList.PushBack(1)
  14. testList.PushBack(2)
  15. testList.PushBack(3)
  16. testList.PushBack(2)
  17. exampleList = removeDuplicates(testList)
  18. for e := exampleList.Front(); e.Next() != nil; e = e.Next() {
  19. testString += strconv.Itoa(e.Value.(int))
  20. }
  21. if testString != "123" {
  22. t.Fatalf("removeDuplicates failed")
  23. }
  24. }

linked.go

  1. package linked
  2. import (
  3. "container/list"
  4. "strconv"
  5. "strings"
  6. )
  7. func removeDuplicates(l *list.List) *list.List {
  8. var newList = list.New()
  9. var dupString string = ""
  10. for e := l.Front(); e.Next() != nil; e = e.Next() {
  11. if strings.Index(dupString, strconv.Itoa(e.Value.(int))) == -1 {
  12. dupString += strconv.Itoa(e.Value.(int))
  13. }
  14. }
  15. for _, c := range dupString {
  16. newList.PushBack(c)
  17. }
  18. return newList
  19. }
英文:

New to Go...I wrote a program to remove duplicate integers stored in a list. When I run the following test for the removeDuplicates function, I get the following error which points to this line: testString += strconv.Itoa(e.Value.(int)) in linked_test.go. Why is this and how do I fix it? I store integers in testList and fetch them with e.Value and typecast with .(int).

  1. panic: interface conversion: interface is int32, not int [recovered]
  2. panic: interface conversion: interface is int32, not int

linked_test.go

  1. package linked
  2. import (
  3. "container/list"
  4. "strconv"
  5. "testing"
  6. )
  7. func TestDuplicates(t *testing.T) {
  8. var (
  9. testList = list.New()
  10. exampleList = list.New()
  11. testString string = ""
  12. )
  13. testList.PushBack(1)
  14. testList.PushBack(2)
  15. testList.PushBack(3)
  16. testList.PushBack(2)
  17. exampleList = removeDuplicates(testList)
  18. for e := exampleList.Front(); e.Next() != nil; e = e.Next() {
  19. testString += strconv.Itoa(e.Value.(int))
  20. }
  21. if testString != "123" {
  22. t.Fatalf("removeDuplicates failed")
  23. }
  24. }

linked.go

  1. package linked
  2. import (
  3. "container/list"
  4. "strconv"
  5. "strings"
  6. )
  7. func removeDuplicates(l *list.List) *list.List {
  8. var newList = list.New()
  9. var dupString string = ""
  10. for e := l.Front(); e.Next() != nil; e = e.Next() {
  11. if strings.Index(dupString, strconv.Itoa(e.Value.(int))) == -1 {
  12. dupString += strconv.Itoa(e.Value.(int))
  13. }
  14. }
  15. for _, c := range dupString {
  16. newList.PushBack(c)
  17. }
  18. return newList
  19. }

答案1

得分: 1

rune被别名为int32

  1. for _, c := range dupString {
  2. newList.PushBack(c) // c是一个rune,也就是int32类型
  3. }

在这里推入的是int32类型的值,而在64位CPU上,int被别名为int64,所以一种方法是强制类型转换:

  1. for _, c := range dupString {
  2. newList.PushBack(int(c))
  3. }
英文:

rune is aliased to int32,

  1. for _, c := range dupString {
  2. newList.PushBack(c) // c is a rune aka int32
  3. }

is pushing int32s, while int is aliased to int64 on 64bit CPUs, so one way to do it is to just force the type:

  1. for _, c := range dupString {
  2. newList.PushBack(int(c))
  3. }

huangapple
  • 本文由 发表于 2015年7月19日 12:30:11
  • 转载请务必保留本文链接:https://go.coder-hub.com/31498004.html
匿名

发表评论

匿名网友

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

确定