golang 去练习片段

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了golang 去练习片段相关的知识,希望对你有一定的参考价值。

// https://play.golang.org/p/LEmzg55qaZ6

package main

import (
	"errors"
	"fmt"
)

// a form of defer that lets me do something if there is an error and something else if there isnt

var toggleMe = true

func foo() (boo string, err error) {
	boo = "boo"

	defer func() {
		if err != nil {
			fmt.Println(err)
		} else {
			fmt.Println("bar")
		}
	}()

	if toggleMe {
		err = errors.New("an error occurred")
	}

	return
}

func main() {
	foo()
	fmt.Println("after foo()")
}

java golang oop 2文章片段

// the example is in Java
class Base {

  private int i = 0;

  void inc1() {
    inc2();  // the change
  }

  void inc2() {
    i++;
  }
}

class Child extends Base {
  @Override
  void inc2() {
    inc1();
  }
}

Child child = new Child();
child.inc2();

以上是关于golang 去练习片段的主要内容,如果未能解决你的问题,请参考以下文章

json [Golang] golang #golang #snippets中有用的片段

golang goroutine例子[golang并发代码片段]

golang代码片段(摘抄)

java golang oop 2文章片段

golang 转到片段以观察运行时行为和内存分配

代码片段 - Golang 实现集合操作