技术宅,fat-man

增加语言的了解程度可以避免写出愚蠢的代码

导航

go 语言与循环

package main

import "fmt"

type Employee struct{name string; age int} 

func displayName(e *Employee){
    fmt.Printf("employee name is %s , age is %d\n",(*e).name,(*e).age)
}


func main() {
    var e = [2]Employee{{"shujun.li",30},{"qiuming.tan",30}}
    for i :=0 ; i < 2; i++ {    
        displayName(&e[i])
    }
}

 

posted on 2014-06-04 16:54  codestyle  阅读(299)  评论(0编辑  收藏  举报