zoukankan      html  css  js  c++  java
  • GO语言练习:不定参数函数

    1、代码

    2、运行


    1、代码

    package main
    import "fmt"
    
    func MyPrintf(args ...interface{}){
        for _, arg := range args {
            switch arg.(type) {
            case int :
                fmt.Println(""", arg, """, "is an int value.")
            case string :
                fmt.Println(""", arg, """, "is a string value.")
            case int64 :
                fmt.Println(""", arg, """, "is an int64 value.")
                default :
                fmt.Println(""", arg, """, "is an unknown type.")
            }
        }
    }
    
    func main(){
        var v1 int = 1
        var v2 int64 = 234
        var v3 string = "hello"
        var v4 float32 = 1.123
        MyPrintf(v1, v2, v3, v4)
    }

    2、运行

    $ go run myprintf.go
    " 1 " is an int value.
    " 234 " is an int64 value.
    " hello " is a string value.
    " 1.123 " is an unknown type.
  • 相关阅读:
    微信小程序
    js
    js
    uni
    uni/微信小程序
    uni/微信小程序
    ES6...扩展运算符(数组或类数组对象)
    微信小程序
    微信小程序
    玩转storm
  • 原文地址:https://www.cnblogs.com/fengbohello/p/4620523.html
Copyright © 2011-2022 走看看