“Casting typu Go” Kod odpowiedzi

Casting typu Go

package main

import (
	"fmt"
)

func main() {
	Name := []byte("John Doe")
	fmt.Println("My name is", string(Name))
}
Restu Wahyu Saputra

Casting typu Go

// variable of float type
var floatValue float = 9.8

// convert float to int
var intValue int = int(floatValue)
SAMER SAEID

Odpowiedzi podobne do “Casting typu Go”

Pytania podobne do “Casting typu Go”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu