1. 改进5.1节的Counter类,让它不要在Int.MaxValue是变成负数。class Counter{ private var value = Int.MaxValue def increment() { value = if ( value scalac e5-5.scala G:\sh...
分类:
其他好文 时间:
2015-04-18 08:41:50
阅读次数:
152
如果你的类库没有采用命名空间的话,需要使用import方法先加载类库文件,然后再进行实例化,例如:我们定义了一个Counter类(位于Com/Sina/Util/Counter.class.php):class Counter {}在使用的时候,需要按下面方式调用:import('Com.Sina....
分类:
Web程序 时间:
2015-01-27 23:13:36
阅读次数:
309
Counter类:计数器IntPk中包含主键publicclassCounterextendsIntPK{
privateintcount;
publicintgetCount(){
returncount;
}
publicvoidsetCount(intcount){
this.count=count;
}
}MinHeap类:最小堆排序类packagecom.ryx.incantation.model;
importcom.ryx.incantation.en..
分类:
编程语言 时间:
2014-12-28 02:01:43
阅读次数:
232