我是 Go 语言的大一新生,我想问一些基本的事情,我们如何才能使这个功能有意义。
我们需要使用“strconv”来解决这个问题。
package main
import (
"fat"
"strconv"
)
type Student struct {
Name string
}
func (stu *Student) Leave() {
fmt.Println(stu.Name + " Leaving")
}
func (stu *Student) Present() {
fmt.Println("I am " + stu.Name)
}
func main() {
fmt.Println("Start of session")
for i := 0; i < 6; i++ {
s := Student{Name: fmt.Sprintf("Student%d", i)}
s.Present()
fmt.Println("Room Empty")
defer s.Leave()
}
fmt.Println("End of session")
}
输出应该是这样的
Start of session
I am Student0
I am Student1
I am Student2
I am Student3
I am Student4
I am Student5
End of session
Student5 Leaving
Student4 Leaving
Student3 Leaving
Student2 Leaving
Student1 Leaving
Student0 Leaving
Room Empty
我们只需要编写一个 main function() 和一个简单的 for 循环来获得结果。
呼唤远方
相关分类