search
HomeBackend DevelopmentGolangStructure of the basics of Go language (summer chapter)

Constructor function

Constructor function is the same as in other languages. The official understanding is The method of is executed when the class is instantiated, usually used for assignment operations.

But in Go, it may not be the same, and you need to use a separate function to complete it.

Structure

type Student struct {
    Name  string
    Age   int
    phone string
}

Constructor

func NewStudent(name string, age int, phone string) *Student {
    return &Student{Name: name, Age: age, phone: phone}
}
//函数尽量采用固定格式 New结构体名

Assignment operation

func main() {
    var s1 = NewStudent("张三", 18, "1111")
    fmt.Println(s1)
}

Execution results

Structure of the basics of Go language (summer chapter)

##Why does the constructor return a structure pointer

Generally speaking, there are two reasons. The first reason is that the performance of passing the address is higher. The second reason is because of the specification. The same is true for the subsequent function binding structure, and more. A norm.

不太用纠结说指针怎么怎么看不懂,对于结构体来说,是不是指针,其实用法都一样。


函数绑定结构体

如果你有其他语言的基础,你可能对于类和对象比较熟悉,传统做法中,是将方法写入类中的。

但是在Go中,采用绑定的方式添加方法。

语法

func (一般用this 要绑定的结构体) 函数名([参数1,参数2...]) [(返回值1,返回值2,...)]{
    代码
}
//一般用this,也可以用其他的,this就像形参一样,随便换,用self,用p,用s,都一样的

示例:给Student结构体绑定方法。

func (this Student) say() {
    fmt.Printf("我是%v,我今年%v岁了,我的手机号是%v\n", this.Name, this.Age, this.phone)
}

main代码

func main() {
    //调用构造方法
    var s1 = NewStudent("张三", 18, "1111")
    //调用Student绑定的say方法
    s1.say()
}

执行结果

Structure of the basics of Go language (summer chapter)

有没有感觉有点Java和Python的感觉了,上述可是通过结构体的方式调用方法的,这里就和C区分开了。

在Go中,基本就是通过这些操作,模拟出来面向对象的,相比之下,我更习惯Go的方式,更加灵活。


函数绑定结构体(指针方式)

如果说区别,只是将要修改的 要绑定的结构体 前面加一个*

代码

func (this *Student) say() {
    fmt.Printf("我是%v,我今年%v岁了,我的手机号是%v\n", this.Name, this.Age, this.phone)
}

执行结果和上述一摸一样。


函数绑定结构体(指针方式和普通方式区别)

通常来说,一般使用指针的方式居多。

嗯...不是居多,是基本都是。

区别

代码一

func (this Student) say1() {
    fmt.Printf("我是%v,我今年%v岁了,我的手机号是%v\n", this.Name, this.Age, this.phone)
    this.Name = "666"//这里修改了Name为其他值
}

第3行修改了Name

func main() {
  //调用构造方法
  var s1 = NewStudent("张三", 18, "1111")
  //调用Student绑定的say方法
  s1.say1()
  //打印s1.Name
  fmt.Println(s1.Name)
}

第7行又打印了s1.Name

执行结果

Structure of the basics of Go language (summer chapter)

???结果没修改,what。

代码二

func (this *Student) say1() {
  fmt.Printf("我是%v,我今年%v岁了,我的手机号是%v\n", this.Name, this.Age, this.phone)
  this.Name = "666"//这里修改了Name为其他值
}

第一行修改为*

func main() {
  //调用构造方法
  var s1 = NewStudent("张三", 18, "1111")
  //调用Student绑定的say方法
  s1.say1()
  //打印s1.Name
  fmt.Println(s1.Name)
}

执行结果

Structure of the basics of Go language (summer chapter)

这次可以看到,结果变了,在其他函数修改了Name,影响了整个s1的Name。


Conclusion

  • When using functions to bind structures, try to integrate the structure parameters into *Type of.

  • One is because of the specification, and the other is because object-oriented should be like this. Modifying the properties of an object should theoretically affect the entire object value.

The above is the detailed content of Structure of the basics of Go language (summer chapter). For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:Go语言进阶学习. If there is any infringement, please contact admin@php.cn delete
go语言有没有缩进go语言有没有缩进Dec 01, 2022 pm 06:54 PM

go语言有缩进。在go语言中,缩进直接使用gofmt工具格式化即可(gofmt使用tab进行缩进);gofmt工具会以标准样式的缩进和垂直对齐方式对源代码进行格式化,甚至必要情况下注释也会重新格式化。

go语言为什么叫gogo语言为什么叫goNov 28, 2022 pm 06:19 PM

go语言叫go的原因:想表达这门语言的运行速度、开发速度、学习速度(develop)都像gopher一样快。gopher是一种生活在加拿大的小动物,go的吉祥物就是这个小动物,它的中文名叫做囊地鼠,它们最大的特点就是挖洞速度特别快,当然可能不止是挖洞啦。

一文详解Go中的并发【20 张动图演示】一文详解Go中的并发【20 张动图演示】Sep 08, 2022 am 10:48 AM

Go语言中各种并发模式看起来是怎样的?下面本篇文章就通过20 张动图为你演示 Go 并发,希望对大家有所帮助!

【整理分享】一些GO面试题(附答案解析)【整理分享】一些GO面试题(附答案解析)Oct 25, 2022 am 10:45 AM

本篇文章给大家整理分享一些GO面试题集锦快答,希望对大家有所帮助!

tidb是go语言么tidb是go语言么Dec 02, 2022 pm 06:24 PM

是,TiDB采用go语言编写。TiDB是一个分布式NewSQL数据库;它支持水平弹性扩展、ACID事务、标准SQL、MySQL语法和MySQL协议,具有数据强一致的高可用特性。TiDB架构中的PD储存了集群的元信息,如key在哪个TiKV节点;PD还负责集群的负载均衡以及数据分片等。PD通过内嵌etcd来支持数据分布和容错;PD采用go语言编写。

go语言是否需要编译go语言是否需要编译Dec 01, 2022 pm 07:06 PM

go语言需要编译。Go语言是编译型的静态语言,是一门需要编译才能运行的编程语言,也就说Go语言程序在运行之前需要通过编译器生成二进制机器码(二进制的可执行文件),随后二进制文件才能在目标机器上运行。

go语言能不能编译go语言能不能编译Dec 09, 2022 pm 06:20 PM

go语言能编译。Go语言是编译型的静态语言,是一门需要编译才能运行的编程语言。对Go语言程序进行编译的命令有两种:1、“go build”命令,可以将Go语言程序代码编译成二进制的可执行文件,但该二进制文件需要手动运行;2、“go run”命令,会在编译后直接运行Go语言程序,编译过程中会产生一个临时文件,但不会生成可执行文件。

golang map怎么删除元素golang map怎么删除元素Dec 08, 2022 pm 06:26 PM

删除map元素的两种方法:1、使用delete()函数从map中删除指定键值对,语法“delete(map, 键名)”;2、重新创建一个新的map对象,可以清空map中的所有元素,语法“var mapname map[keytype]valuetype”。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),