本月博客排行
-
第1名
wy_19921005 -
第2名
mft8899 -
第3名
benladeng5225 - Anmin
- duanfei
- wddpwzzhao123
年度博客排行
-
第1名
龙儿筝 -
第2名
宏天软件 -
第3名
wy_19921005 - benladeng5225
- vipbooks
- kaizi1992
- tanling8334
- sam123456gz
- arpenker
- zysnba
- fantaxy025025
- xiangjie88
- wallimn
- e_e
- jh108020
- ganxueyun
- Xeden
- xyuma
- wangchen.ily
- zhanjia
- johnsmith9th
- zxq_2017
- forestqqqq
- 青否云后端云
- jbosscn
- daizj
- xpenxpen
- 喧嚣求静
- kingwell.leng
- jveqi
- lchb139128
- kristy_yy
- javashop
- lzyfn123
- sunj
- yeluowuhen
- ajinn
- lerf
- lemonhandsome
- chenqisdfx
- xiaoxinye
- flashsing123
- lyndon.lin
- bosschen
- zhangjijun
- sunnylocus
- lyj86
- paulwong
- sgqt
- hudiemeng870329
最新文章列表
AS3.0 Dynamic class
In Java, if you’ve created an object from a particular class, you can use only properties and methods that were defined in this class. For example, if the following class:
class Person {String nam ...
method_missing in JavaScript(SpiderMonkey)
ruby的method_missing魔法在JavaScript中是否有类似等价物?答案是SpiderMonkey的__noSuchMethod__ 方法。演示如下(请firebug大神出马):
var obj = {};
obj.__noSuchMethod__ = function(/*String*/methodName,/*Array*/arrArguments){
c ...
JUnit的框架设计及其使用的设计模式
JUnit的框架设计及其使用的设计模式
翻译:胡拥军 hu.yong.jun@ctgpc.com.cn 〔有所添加〕
原文:JUnit A Cook's Tour 见 www.junit.org
JUnit的框架设计及其使用的模式 ...
最通俗易懂的面向对象著作
《写给大家看的面向对象编程书》
媒体评论
“要想创建高质量的软件,深入掌握你看似熟悉、实则没有真正理解的对象和类的各种精妙之处是必不可少的。而要想做到这一点,请仔细研读本书。”
——Bill McCarty
,资深技术专家,
Object-Oriented Design in Java
作者
“本书以生动有趣的风格深刻阐述了面向对象之道,很好地做到 ...
Squeak中文资源收集 -- 我不知道是什么玩意,可以回家哄小孩玩!
转自: http://code.google.com/p/chinesesqueak/
她是Smalltalk的IDE,不过我到现在都不知道这东西能用来做什么? 界面很好看,和虚拟机似的!
以下是一些教程 -- 中文的,很难找的
1. Powerful idea中文版翻译
Powerful idea in the class room. 是B.J. Allen-Conn和Kim Rose合著 ...
我所得到的都是静态的
出自《java puzzle》
下面的程序对巴辛吉小鬣狗和其它狗之间的行为差异进行了建模。如果你不知道什么是巴辛吉小鬣狗,那么我告诉你,这是一种产自非洲的小型卷尾狗,它们从来都不叫唤。那么,这个程序将打印出什么呢?
class Dog {
public static void bark() {
System.out.print("woof ");
}
}
...
一步一步学Ruby(一): Ruby介绍
文章摘要
Ruby是如何来的
准备
ScreenShot
Ruby是如何来的
Ruby 的发明者松本行弘 Yukihiro “matz” Matsumoto,混合了他喜欢的语言(Perl、 Smalltalk、 Eiffel、 Ada 和 Lisp ) 产生了一种具有函数式及指令程序设计特性的新语言。他常说,他是“试着让 Ruby 更自然,而不是简单,就像生活一样”。
...