7. Implementing interfaces using pointer receivers VS value receivers
8. Implementing multiple interfaces
9. Embedding interfaces
10. Zero value of Interface
二、Goroutines
1. How to start a Goroutine?
2. Starting multiple Goroutines
三、Channels
1. Declaring channels
2. Channel example program
3. Another example for channels
4. Deadlock
5. Unidirectional channels
6. Closing channels and for range loops on channels
一、Interface
1. Declaring and implementing an interface
package mainimport"fmt"type VowelsFinder interface{FindVowels()[]rune}type MyString stringfunc(ms MyString)FindVowels()[]rune{var vowels []runefor_,rune:=range ms {ifrune=='a'||rune=='e'||rune=='i'||rune=='o'||rune=='u'{vowels =append(vowels,rune)}}return vowels}funcmain(){name :=MyString("LiangXiaoQing")var v VowelsFinderv = namefmt.Printf("vowels are %c", v.FindVowels())}// vowels are [i a i a o i]
type Worker interface{Work()}type Person struct{name string}func(p Person)Work(){fmt.Println(p.name,"is Working")}funcdescribe(w Worker){fmt.Printf("Interface type %T value %v\n", w, w)}funcmain(){p := Person{name:"Like",}var w Worker = pdescribe(w)w.Work()}// Interface type main.Person value {Like}// Like is Working
4. Empty interface
funcdescribe(i interface{}){fmt.Printf("type = %T, value= %v\n", i, i)}funcmain(){s :="Hello World"describe(s)i :=55describe(i)strt :=struct{name string}{name:"Like",}describe(strt)}// type = string, value= Hello World// type = int, value= 55// type = struct { name string }, value= {Like}
5. Type assertion
funcassert(i interface{}){s := i.(int)fmt.Println(s)//v, s := i.(int)//fmt.Println(v, s) // 56, true 如果是两个值 则是值和true or false}funcmain(){var i interface{}=56assert(i)// 56var s interface{}="Like"assert(s)// panic: interface conversion: interface {} is string, not int}
6. Type switch
funcfindType(i interface{}){switch i.(type){casestring:fmt.Printf("I am string and my value is %s\n", i.(string))caseint:fmt.Printf("I am an int and my value is %d\n", i.(int))default:fmt.Printf("Unknown type\n")}}funcmain(){findType("Like")findType(666)findType(66.99)}// I am string and my value is Like// I am an int and my value is 666// Unknown type
7. Implementing interfaces using pointer receivers VS value receivers
package mainimport"fmt"type Describer interface{Describe()}type Person struct{name stringage int}type Address struct{state stringcountry string}func(p Person)Describe(){fmt.Printf("%s is %d years old\n", p.name, p.age)}func(a *Address)Describe(){fmt.Printf("State %s Counrty %s", a.state, a.country)}funcmain(){var d1 Describerp1 := Person{"Like",11}d1 = p1d1.Describe()// Like is 11 years oldp2 := Person{"Jack",22}d1 =&p2 //{Jack 22}d1.Describe()// Jack is 22 years oldvar d2 Describera := Address{"LiangXiaoXiao","China"}d2 =&ad2.Describe()// State LiangXiaoXiao Counrty China}// Like is 11 years old// Jack is 22 years old// State LiangXiaoXiao Counrty China`
8. Implementing multiple interfaces
type SalaryCalculators interface{DisplaySalary()}type LeaveCalculator interface{CalculateLeavesLeft()int}type Employee struct{firstName stringlastName stringbasicPay intpf inttotalLeaves intleavesTaken int}func(e Employee)DisplaySalary(){fmt.Printf("%s %s has salary $%d", e.firstName, e.lastName,(e.basicPay + e.pf))}func(e Employee)CalculateLeavesLeft()int{return e.totalLeaves - e.leavesTaken}funcmain(){e := Employee{firstName:"Naveen",lastName:"Ramanathan",basicPay:5000,pf:200,totalLeaves:30,leavesTaken:5,}var s SalaryCalculators = es.DisplaySalary()var l LeaveCalculator = efmt.Println("\nLeaves left =", l.CalculateLeavesLeft())}// Naveen Ramanathan has salary $5200// Leaves left = 25
9. Embedding interfaces
type SalaryCalculators interface{DisplaySalary()}type LeaveCalculator interface{CalculateLeavesLeft()int}type EmployeeOperations interface{SalaryCalculatorsLeaveCalculator}type Employee struct{firstName stringlastName stringbasicPay intpf inttotalLeaves intleavesTaken int}func(e Employee)DisplaySalary(){fmt.Printf("%s %s has salary $%d", e.firstName, e.lastName,(e.basicPay + e.pf))}func(e Employee)CalculateLeavesLeft()int{return e.totalLeaves - e.leavesTaken}funcmain(){e := Employee{firstName:"Naveen",lastName:"Ramanathan",basicPay:5000,pf:200,totalLeaves:30,leavesTaken:5,}var s EmployeeOperations = es.DisplaySalary()fmt.Println("\nLeaves left =", s.CalculateLeavesLeft())}// Naveen Ramanathan has salary $5200// Leaves left = 25
10. Zero value of Interface
package mainimport"fmt"type Describer interface{Describe()}funcmain(){var d1 Describerif d1 ==nil{fmt.Printf("d1 is nil and has type %T value %v\n", d1, d1)}}// d1 is nil and has type <nil> value <nil>
二、Goroutines
1. How to start a Goroutine?
package mainimport("fmt""time")funchello(){fmt.Println("Hello world goroutine")}funcmain(){gohello()// 没有等待完成就下一步了time.Sleep(1* time.Second)// 优化添加io操作 则看见了运行hello的输入fmt.Println("main function")}
2. Starting multiple Goroutines
package mainimport("fmt""time")funcnumbers(){for i :=1; i <=5; i++{time.Sleep(250* time.Millisecond)fmt.Printf("%d ", i)}}funcalphabets(){for i :='a'; i <='e'; i++{time.Sleep(400* time.Millisecond)fmt.Printf("%c ", i)}}funcmain(){gonumbers()goalphabets()time.Sleep(3000* time.Millisecond)fmt.Println("main terminated")}// 1a23b4c5deMain Terminated
三、Channels
1. Declaring channels
package mainimport"fmt"funcmain(){var a chanintif a ==nil{fmt.Println("Channel a is nil, going to define it")a =make(chanint)fmt.Printf("Type of a is %T", a)}}// Channel a is nil, going to define it// Type of a is chan int
2. Channel example program
package mainimport("fmt""time")funchello(done chanbool){fmt.Println("Hello go routine is going to sleep")time.Sleep(4* time.Second)fmt.Println("hello go routine awake and going to write to done")done <-true// 将 true发送给done通道 表示hello结束运行}funcmain(){done :=make(chanbool)// 创建done通道 bool类型fmt.Println("Main going to call hello go goroutine")gohello(done)// 启动goroutine线程并发 不会阻塞主线程 运行hello<-done // done 通道接收数据 阻塞操作 直到接收到数据为止 hello发送了true解除阻塞time.Sleep(1* time.Second)fmt.Println("Main received data")}// Main going to call hello go goroutine// Hello go routine is going to sleep// hello go routine awake and going to write to done// Main received data
3. Another example for channels
package mainimport("fmt")funccalcSquares(number int, squareop chanint){ sum :=0for number !=0{digit := number %10sum += digit * digitnumber /=10}squareop <- sum}funccalcCubes(number int, cubeop chanint){ sum :=0for number !=0{digit := number %10sum += digit * digit * digitnumber /=10}cubeop <- sum}funcmain(){ number :=589sqrch :=make(chanint)cubech :=make(chanint)gocalcSquares(number, sqrch)gocalcCubes(number, cubech)squares, cubes :=<-sqrch,<-cubechfmt.Println("Final output", squares + cubes)}// Final output 1536
4. Deadlock
package mainfuncmain(){ ch :=make(chanint)ch <-5}// fatal error: all goroutines are asleep - deadlock!// goroutine 1 [chan send]:// main.main()// D:/one/channel.go:34 +0x31
6. Closing channels and for range loops on channels
funcproducer(chnl chanint){for i :=0; i <10; i++{chnl <- i}close(chnl)}funcmain(){ch :=make(chanint)goproducer(ch)for{v, ok :=<-chfmt.Println(v, ok)if ok ==false{break}fmt.Println("Received", v, ok)}}// Received 0 true // Received 1 true // Received 2 true // Received 3 true // Received 4 true // Received 5 true // Received 6 true // Received 7 true // Received 8 true // Received 9 true
查看所有数据库各表容量大小 1. 查看所有数据库各表容量大小2.查看指定数据库容量大小3. 查看所有数据库容量大小 1. 查看所有数据库各表容量大小
select
table_schema as 数据库,
table_name as 表名,
table_rows as 记录数,
truncate(data_length/1024/1024, 2) as 数据容量…