Go语言第九课 结构体与接口

Go是一门面向过程的语言,没有类。但是类似于C,有结构体。

Go语言还有一个神奇的地方,没有pubic或者private。包级元素+大写开头=可导出,可导出意味着包外可访问。

关于结构体

结构体的成员变量

结构体的成员变量可以是预定义类型也可以是结构体类型。

加入现在有个人,他有他自己的教育背景。我们再描述这种逻辑关系时可以使用结构体如下:

type edu_info struct {
	stu_num     string
	school_name string
	stu_years   int
}

type persion struct {
	name string
	edu  edu_info
}

需要注意的是:

· 结构体的成员变量会被赋予“默认初值”。而结构体自身的“默认初值”是所有成员变量“默认初值的集合”

· 结构体的成员变量用点“.”访问

· 最神奇的一点:对结构体值指针的点操作和对结构体值的点操作是等价的

· 如果结构体成员变量是大写开头的,则这个成员变量是可导出的。可导出意味着在包外可访问

· 一个聚合类型的元素不能是自身类型,但是可以是自身类型的指针。结构体也是聚合类型,同样遵循这样的规则。

关于空结构体

没有任何成员的结构体就是空结构体,它的大小为0,不包含任何信息。空结构体通常起到了占位的作用。

示例代码1

package main

import "fmt"

type edu_info struct {
	stu_num     string
	school_name string
	stu_years   int
}

type persion struct {
	name string
	edu  edu_info
}

func main() {
	var yong persion
	yong.name = "yuyong"
	yong.edu.school_name = "a school"
	yong.edu.stu_num = "001"
	fmt.Println(yong.edu.stu_num)
	fmt.Println(yong.edu.stu_years)

	var p_edu *edu_info = &yong.edu
	fmt.Println(p_edu.school_name)
	fmt.Println((*p_edu).school_name)

	var empty_struct struct{}
	fmt.Println(empty_struct)
}

结果:

001
0
a school
a school
{}

结构体的赋值

顺序赋值

yong := persion{"yuyong", edu_info{"0001", "a school", 4}}

对应赋值

yong_1 := persion{edu: edu_info{"0001", "a school", 4}, name: "yuyong"}

示例代码2

package main

import "fmt"

type edu_info struct {
	stu_num     string
	school_name string
	stu_years   int
}

type persion struct {
	name string
	edu  edu_info
}

func main() {
	yong := persion{"yuyong", edu_info{"0001", "a school", 4}}
	yong_1 := persion{edu: edu_info{"0001", "a school", 4}, name: "yuyong"}
	fmt.Println(yong)
	fmt.Println(yong_1)
}

运行结果

{yuyong {0001 a school 4}}
{yuyong {0001 a school 4}}

匿名成员

匿名成员是只有类型没有变量名的成员。

示例代码3

package main

import "fmt"

type edu_info struct {
	stu_num     string
	school_name string
	stu_years   int
}

type position struct {
	pos_name string
	phone    string
}

type persion struct {
	name string
	edu  edu_info
	int
	position
}

func main() {
	yong := persion{"yuyong", edu_info{"0001", "a school", 4}, 100, position{"Management", "110"}}
	yong_1 := persion{edu: edu_info{"0001", "a school", 4}, name: "yuyong"}
	yong_1.position.pos_name = "HR"
	yong_1.phone = "1110"
	yong_1.int = 100
	fmt.Println(yong)
	fmt.Println(yong_1)
}
{yuyong {0001 a school 4} 100 {Management 110}}

{yuyong {0001 a school 4} 100 {HR 1110}}

关于接口

接口的定义与实现

package main

import (
	"fmt"
	"strconv"
	"reflect"
)

type persion interface {
	sayHello(hello_word string) string
	sayFuck(hello_word string) string
}

type stu struct {
	name        string
	school_name string
}

type teacher struct {
	teacher_id string
	years      int
}

func (t teacher) sayHello(hello_word string) string {
	return "my tech id is " + t.teacher_id + " and hello --> " + hello_word
}

func (s stu) sayHello(hello_word string) string {
	return "my stu name is " + s.name + " and hello --> " + hello_word
}

func (t teacher) sayFuck(hello_word string) string {
	return "my tech id is " + t.teacher_id + " and fuck --> " + hello_word
}

func (s stu) sayFuck(hello_word string) string {
	return "my stu name is " + s.name + " and fuck --> " + hello_word
}

func main() {
	stu_test := new(stu)
	stu_test.name = "yuyong"
	stu_test.school_name = "a school"
	teh_test := new(teacher)
	teh_test.teacher_id = "1001"
	teh_test.years = 4

	var people [2]persion
	people[0] = stu_test
	people[1] = teh_test

	for i := 0; i < len(people); i++ {
		fmt.Println(reflect.TypeOf(people[i]))
		check := people[i].(persion)
		fmt.Println(check)
		fmt.Println(people[i].sayHello(strconv.Itoa(i)))
	}
}
*main.stu
&{yuyong a school}
my stu name is yuyong and hello --> 0
*main.teacher
&{1001 4}
my tech id is 1001 and hello --> 1






猜你喜欢

转载自blog.csdn.net/yongyu_it/article/details/80694854