public LinkStack()
 {
     this.head = null;
     this.size = 0;
 }
 public LinkNode(T val)
 {
     this.Next = null;
     this.Val  = val;
 }