Go 方法案例練習

方法案例練習 編寫結構體(MethodUtils),編程一個方法,方法不須要參數,在方法中打印一個 10*8 的矩形,在 main 方法中調用該方法。 type MethodUtils struct { //字段... } //給MethodUtils編寫方法 func (mu MethodUtils) Print() { for i := 1; i <= 10; i++ { for j
相關文章
相關標籤/搜索