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
##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() }
执行结果
有没有感觉有点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
执行结果
???结果没修改,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) }
执行结果
这次可以看到,结果变了,在其他函数修改了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!

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

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

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

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

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

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


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

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
Visual web development tools

SublimeText3 Linux new version
SublimeText3 Linux latest version

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),
