package main import "fmt" /////////////////////////////////////////////////////// // 下面的Foo()函数的注释就是使用Goanno插件自动生成的 // /////////////////////////////////////////////////////// // Foo // @description 方法或函数的功能说明 // @author 码农人生<1104187@qq.com> // @date 2008-08-08 08:08:08 // @param name string 参数说明 // @param gender string 参数说明 // @param age int64 参数说明 // @return profile map[string]any 返回值说明 func Foo(name string, gender string, age int64) (profile map[string]any) { profile = map[string]any{} profile["name"] = name profile["gender"] = gender profile["age"] = age return } func main() { profile := Foo("张三", "男", 18) name := profile["name"] gender := profile["gender"] age := profile["age"] fmt.Printf("俺叫%s(%s),今年%d岁。\n", name, gender, age) // 俺叫张三(男),今年18岁。 }
Copyright © 2024 码农人生. All Rights Reserved