Skip to content

FAQ about Go

Posted on:May 29, 2024 at 07:09 AM

Usage of Data vs. Pointer

  1. sample is object

    1. sample is not assigned

      Untitled.png

    2. sample is assigned

      Untitled.png

  2. sample is a pointer

    1. sample is not assigned

      Untitled.png

      Untitled.png

    2. sample is assigned

      Untitled.png

Usage of Struct and Interface

type MyInterface interface {}
type MyStruct struct {}