- #刷题
- #careercup
实现单链表(JAVA)

9304
创建节点:
this.nodeValue = nodeValue;
this.next = null;
的意思啊?为什么这里的null不用大写呢?
Node(T nodeValue) { [br][/br][br][/br] this(nodeValue, null); [br][/br][br][/br] }this(nodeValue, null)这句是不是
this.nodeValue = nodeValue;
this.next = null;
的意思啊?为什么这里的null不用大写呢?
4条回复
热度排序