2008-10-13 14:43:55 阅读107 评论0 132008/10 Oct13
Congratulations! The first income of freelance job abroad comes!
Though it's not big money, it's the begining.
2008-6-3 9:46:46 阅读39 评论0 32008/06 June3
To avoid unnecessary code execution in discarded objects, a program should always deactivate objects before discarding them. Deactivating an object means putting the object in an idle state where nothing in the program can cause it to execute code. For
2008-5-16 14:08:13 阅读47 评论1 162008/05 May16
看一篇软件界面设计论文时里面出现的名字。很生动的论文,只是很多词不太懂,边查边看~~
Merlin: 巨石阵的建造者。
Geppetto: Pinocchio的“父亲”。
Pinocchio: 大名鼎鼎的皮诺曹。
Frankenstein: 科学怪人。大怪物The Creature的制造者。
2008-5-9 10:13:29 阅读82 评论0 92008/05 May9
在讲解构造函数的时候有这样一句话:
A value supplied to a constructor parameter when an object is instantiated is known as a constructor argument. Using a constructor argument to supply the value of a constructor parameter is known as passing that value to the constructor.
可以将 parameter 理解为形参,而将 argument 理解为实参。