Home > Backend Development > Golang > What does type conversion mean in go language?

What does type conversion mean in go language?

藏色散人
Release: 2021-01-18 14:28:39
Original
2401 people have browsed it

Type conversion in go language means converting a variable of one data type into a variable of another type. The basic format of type conversion in go language is "type_name(expression)", where the parameter type_name represents the type, and expression represents an expression.

What does type conversion mean in go language?

The environment of this article: Windows 7 system, Go1.11.2 version, Dell G3 computer.

Recommended tutorial: "golang"

Go language type conversion

Type conversion is used Convert a variable of one data type to a variable of another type. The basic format of Go language type conversion is as follows:

type_name(expression)
Copy after login

type_name is the type and expression is the expression.

Example

In the following example, the integer type is converted into a floating point type, the result is calculated, and the result is assigned to a floating point variable:

Example

package main
import "fmt"
func main() {
   var sum int = 17
   var count int = 5
   var mean float32
   
   mean = float32(sum)/float32(count)
   fmt.Printf("mean 的值为: %f\n",mean)
}
Copy after login

The execution output result of the above example is:

mean 的值为: 3.400000
Copy after login

For more go language technical articles, please visit the go language tutorial column!

The above is the detailed content of What does type conversion mean in go language?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template