private class Node{
public E e;
public Node next;
public Node(E e, Node next){
this.e = e;
this.next = next;
}
public Node(E e){
this(e, null);
}
public Node(){
this(null, null);
}
@Override
public String toString(){
return e.toString();
}
}
比如,以下Student类中,name可以直接拿,不需要特殊的get方法,因为是public的。
public class Student{
public string name;
// ... 省略构造函数
}