文件名称:helloGoLang:高朗
文件大小:21KB
文件格式:ZIP
更新时间:2024-04-22 10:15:05
Go
去做 函数中的变量参数,函数调用中的变量参数(func Test(args ... int),Test(args [:] ...) package main import ( "fmt" ) func Test ( args ... string ) { for _ , v := range args { fmt . Println ( v ) } } func main () { Test ([] string { "Hello" , "World" , "!" } ... ) }
【文件预览】:
helloGoLang-main
----maps()
--------map_test.go(1KB)
--------map.go(194B)
----go.mod(237B)
----main.go(555B)
----array()
--------array_test.go(769B)
--------array.go(251B)
--------slice()
----hello_test.go(177B)
----go.sum(4KB)
----primitive()
--------maxValue_test.go(1KB)
--------primitiveTypeSize_test.go(2KB)
--------byte_test.go(424B)
--------complex_test.go(390B)
--------float_test.go(771B)
----structure()
--------structure.go(213B)
--------structure_test.go(241B)
----hello.go(135B)
----README.md(317B)
----function()
--------func.go(547B)
--------closure()
--------vargs()
--------defer()
--------fop()
--------func_test.go(1KB)
----file()
--------sample.txt(4KB)
--------file_test.go(753B)
--------file.go(897B)
----pointer()
--------pointer_test.go(384B)
----.gitignore(2KB)