Single-instance mode in the Go language

Source: Internet
Author: User
Single-Case mode

The purpose of using a singleton is to ensure that there is a unique instance in the entire system

package mainimport (        "fmt"        "sync")type IntAndString struct {        num int32        str string}var m *IntAndStringvar once sync.Oncefunc GetInstance() *IntAndString {        once.Do(func() {        m = &IntAndString{num:1, str:"fdjkslf"}        })        return m}func (m *IntAndString) String() {        fmt.Printf("int %v, string %v\n", m.num, m.str)}func main() {        tmp := GetInstance()        tmp.String()        tmp.str = "hello"        tmp1 :=  GetInstance()        tmp1.String()        tmp.String()}

Run results

int 1, string fdjkslfint 1, string helloint 1, string hello

Single-instance mode in the Go language

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.