英文:
int from string in go
问题
什么是从字符串创建整数值的函数?
i := strconv.Atoi("10")
英文:
What's the function to create a int value from string
i := ???.????( "10" )
答案1
得分: 8
导入strconv
包(src/pkg/strconv),然后使用strconv.Atoi("10")
。
英文:
Import the strconv
package (src/pkg/strconv), then use strconv.Atoi("10")
答案2
得分: 0
一些其他选项:
package main
import "fmt"
func main() {
var n int
fmt.Sscan("100", &n)
fmt.Println(n == 100)
}
package main
import "strconv"
func main() {
n, e := strconv.ParseInt("100", 10, 64)
if e != nil {
panic(e)
}
println(n == 100)
}
英文:
Some other options:
package main
import "fmt"
func main() {
var n int
fmt.Sscan("100", &n)
fmt.Println(n == 100)
}
package main
import "strconv"
func main() {
n, e := strconv.ParseInt("100", 10, 64)
if e != nil {
panic(e)
}
println(n == 100)
}
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论