當前位置: 首頁>>編程示例 >>用法及示例精選 >>正文


Golang strconv.Atoi()用法及代碼示例

Go語言提供了內置支持,以實現strconv Package與基本數據類型的字符串表示之間的轉換。該包提供了一個Atoi()函數,該函數等效於ParseInt(str string,base int,bitSize int)用於將字符串類型轉換為int類型。要訪問Atoi()函數,您需要在程序中導入strconv軟件包。

用法:

func Atoi(str string) (int, error)

在這裏,str是字符串。

範例1:

// Golang program to illustrate 
// strconv.Atoi() function 
package main 
  
import ( 
    "fmt"
    "strconv"
) 
  
func main() { 
  
    // Using Atoi() function 
    x:= "245"
    y, e:= strconv.Atoi(x) 
    if e == nil { 
        fmt.Printf("%T \n %v", y, y) 
    } 
  
}

輸出:

int 
 245

範例2:

// Golang program to illustrate 
// strconv.Atoi() function 
package main 
  
import ( 
    "fmt"
    "strconv"
) 
  
func main() { 
  
    // Using Atoi() function 
    x1:= "245"
    fmt.Println("Before:") 
    fmt.Printf("Type:%T ", x1) 
    fmt.Printf("\nValue:%v", x1) 
    y1, e1:= strconv.Atoi(x1) 
    if e1 == nil { 
        fmt.Println("\nAfter:") 
        fmt.Printf("Type:%T ", y1) 
        fmt.Printf("\nValue:%v", y1) 
    } 
  
    x2:= "1"
    fmt.Println("\n\nBefore:") 
    fmt.Printf("Type:%T ", x2) 
    fmt.Printf("\nValue:%v", x2) 
    y2, e2:= strconv.Atoi(x2) 
    if e2 == nil { 
        fmt.Println("\nAfter:") 
        fmt.Printf("Type:%T ", y2) 
        fmt.Printf("\nValue:%v", y2) 
    } 
  
}

輸出:

Before:
Type:string 
Value:245
After:
Type:int 
Value:245

Before:
Type:string 
Value:1
After:
Type:int 
Value:1



相關用法


注:本文由純淨天空篩選整理自ankita_saini大神的英文原創作品 strconv.Atoi() Function in Golang With Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。