在Go中轻松安全地从一种数据类型转换为另一种数据类型
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 
梁 致源 d23e8d28a6 更新 'go.mod' vor 3 Jahren
.gitignore Remove expensive TRACE logging vor 7 Jahren
.travis.yml travis: Add Go 1.12 vor 4 Jahren
LICENSE Initial commit vor 10 Jahren
Makefile travis: Only check gofmt on Go 1.12 vor 4 Jahren
README.md 更新 'README.md' vor 3 Jahren
cast.go Add support for map of int64 and map of int vor 5 Jahren
cast_test.go Fix Travis build vor 5 Jahren
caste.go Fix uint, uint8, uint16, uint32 and uint64 conversion in ToStringE function. vor 4 Jahren
go.mod 更新 'go.mod' vor 3 Jahren
go.sum Fix Travis build vor 5 Jahren

README.md

cast

GoDoc Build Status Go Report Card

在Go中轻松安全地从一种类型转换为另一种类型

Don’t Panic! ... Cast

What is Cast?

Cast是一个库,用于以一致且简单的方式在不同的go类型之间进行转换。

Cast提供简单的功能,可轻松将数字转换为字符串,进入布尔等接口。当明显转换是可能的。 它不会尝试猜测您的意思,例如,您只能在字符串为字符串时将其转换为int int的表示形式,例如“ 8”。 Cast的开发目的是用于Hugo, 使用YAML,TOML或JSON的网站引擎用于元数据。

Why use Cast?

在Go中使用动态数据时,您通常需要强制转换或转换数据 从一种类型变成另一种类型。 强制转换不仅限于使用类型断言(尽管 它在可能的情况下使用它)来提供非常直接和方便的库。

如果您正在使用接口来处理诸如动态内容之类的内容您将需要一种简单的方法来将接口转换为给定类型。 这个是您的库。 如果您要从YAML,TOML或JSON或其他缺少格式的数据中获取数据完整类型,那么Cast是适合您的库。

Usage

Cast provides a handful of To_____ methods. These methods will always return the desired type. **If input is provided that will not convert to that type, the 0 or nil value for that type will be returned**.

Cast also provides identical methods To_____E. These return the same result as the To_____ methods, plus an additional error which tells you if it successfully converted. Using these methods you can tell the difference between when the input matched the zero value or when the conversion failed and the zero value was returned.

The following examples are merely a sample of what is available. Please review the code for a complete set.

Example ‘ToString’:

cast.ToString("mayonegg")         // "mayonegg"
cast.ToString(8)                  // "8"
cast.ToString(8.31)               // "8.31"
cast.ToString([]byte("one time")) // "one time"
cast.ToString(nil)                // ""

var foo interface{} = "one more time"
cast.ToString(foo)                // "one more time"

Example ‘ToInt’:

cast.ToInt(8)                  // 8
cast.ToInt(8.31)               // 8
cast.ToInt("8")                // 8
cast.ToInt(true)               // 1
cast.ToInt(false)              // 0

var eight interface{} = 8
cast.ToInt(eight)              // 8
cast.ToInt(nil)                // 0