91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

golang struct

發布時間:2020-07-05 02:21:58 來源:網絡 閱讀:377 作者:欺世 欄目:開發技術

struct


1、定義一個struct

package main

import "fmt"

type Rectangle struct {        
	width float64
	height float64
}

func main(){
	var r Rectangle       //聲明一個結構體  r,width height的值為“零”值。在這里為0.0,0.0
	r = Rectangle{width:20,height:10} //給長寬賦值,帶名稱時,順序隨意
	r = Rectangle{20,10}      //等價上部的賦值,不帶變量名稱時,值與聲明的變量順序一致。
	fmt.Println("the Rectangle width:",r.width) // 訪問 r.{屬性} 
}
//執行結果:
the Rectangle width: 20

2、給結構體定義方法

package main

import "fmt"

type Rectangle struct {
	width float64
	height float64
}

func (r *Rectangle) area() float64 { //定義一個area的函數,返回值類型為float64,函數的接收者為前面括號的(變量名 類型名)
	return r.width * r.height

}


func main(){
	var r Rectangle
	r = Rectangle{width:20,height:10}
	r = Rectangle{20,10}
	fmt.Println("the Rectangle width:",r.width)
	fmt.Println("the area of Rectangle: ",r.area())  //直接調用area函數
}
//執行結果:
the Rectangle width: 20
the area of Rectangle:  200   //計算結果為200

3、結構體方法接收類型為指針,則能改變原結構體的屬性值

我們先將類型設置為值類型看看

package main

import "fmt"

type Rectangle struct {
	width float64
	height float64
}

func (r *Rectangle) area() float64 {
	return r.width * r.height

}
func (r Rectangle) changeWidth(){   //把接收體的類型設置為值類型
	r.width = 30
}

func main(){
	var r Rectangle
	r = Rectangle{width:20,height:10}
	r = Rectangle{20,10}
	fmt.Println("the Rectangle width:",r.width)
	fmt.Println("the area of Rectangle: ",r.area())
	r.changeWidth()                 //改變了width
	fmt.Println("the Rectangle width:",r.width) //打印結果
}
//執行結果:
the Rectangle width: 20
the area of Rectangle:  200
the Rectangle width: 20               //結果顯示并沒有改變

我們將接收體設置為指針

package main

import "fmt"

type Rectangle struct {
	width float64
	height float64
}

func (r *Rectangle) area() float64 {
	return r.width * r.height

}
func (r *Rectangle) changeWidth(){  // 指針類型
	r.width = 30
}

func main(){
	var r Rectangle
	r = Rectangle{width:20,height:10}
	r = Rectangle{20,10}
	fmt.Println("the Rectangle width:",r.width)
	fmt.Println("the area of Rectangle: ",r.area())
	r.changeWidth()
	fmt.Println("the Rectangle width:",r.width)
}
//執行結果:
the Rectangle width: 20
the area of Rectangle:  200
the Rectangle width: 30                 //結果顯示已經改變了width的值


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

昌宁县| 台北市| 城步| 敦化市| 巴塘县| 扶沟县| 宁明县| 梅河口市| 江都市| 桃源县| 泾源县| 台北县| 冀州市| 易门县| 登封市| 澎湖县| 泸州市| 凤山市| 方正县| 肥西县| 郁南县| 慈利县| 文登市| 电白县| 宣恩县| 潼南县| 江津市| 茌平县| 无锡市| 前郭尔| 泾源县| 茂名市| 沾化县| 藁城市| 和田市| 新田县| 泗洪县| 左贡县| 韶山市| 新竹市| 阿城市|