Switch language
zh
Switch theme
Light

golang-给-struct-赋值-nil

struct ListNode {
  Val int
  Next *ListNode
}

var li *ListNode = nil

原文见csdn

🍀