能力强的人善于解决问题,有智慧的人善于绕过问题。 区别很微妙,小心谨慎做后者。
全部博文(399)
发布时间:2015-05-02 15:39:37
并发程序一定避不开以下三个问题:starvation, deadlock, and race conditionsLimitations of the Actor-Based Model The actor-based model makes it easy to program with isolated mutability, but it does have some limitations. Actors run asynchronously but coordinate by passing messages. The unexpe.........【阅读全文】
发布时间:2015-05-02 09:07:34
Scala 是构建在 JVM 上的静态类型的脚本语言,而脚本语言总是会有些约定来增强灵活性。灵活性可以让掌握了它的人如鱼得水,也会让初学者不知所措。比如说 Scala 为配合 DSL 在方法调用时有这么一条约定:1) 在明确了方法调用的接收者的情况下,若方法只有一个参数时,调用的时候就可以省略点及括号。如 “0 to 2”,实.........【阅读全文】
发布时间:2015-05-02 00:33:36
package STMimport scala.concurrent.stm.Refimport scala.concurrent.stm.atomicimport scala.concurrent.stm.retryimport scala.concurrent.stm.retryForimport java.util.Timerimport java.util.TimerTaskimport java.util.concurrent.TimeUnitobject SensibleWait { val start = System.nanoTime()&.........【阅读全文】