m******u 发帖数: 12400 | 1 这个constructor怎么用了void?
public void LinkList() // constructor
{
first = null; // no items on list yet }
------摘自《data structures and algorithms in java》 2nd edition chapter 5
linkList |
b******y 发帖数: 9224 | 2 那个不是一个constructor. It's just a method that happens to share a name
with its class. |
b******y 发帖数: 9224 | 3 另外,我多年计算机编程的一个体会是,你得敢于challenge你自己的假设。没有搞清
楚问题之前,不要make assumptions, 因为往往自己make的assumption是有问题的。
dubugging也一样的道理。 |
g*****g 发帖数: 34805 | 4 Bad design though.
【在 b******y 的大作中提到】 : 那个不是一个constructor. It's just a method that happens to share a name : with its class.
|
b******y 发帖数: 9224 | 5
haha, true, true, true... whatzzzup... ;-)
【在 g*****g 的大作中提到】 : Bad design though.
|