Package Com.leegh.actor
Import Scala.actors.Actor
/**
* @author Guohui Li
*/
Object First_actor extends Actor {
Def Act () {
for (I <-1 to 10) {
println ("Step:" + i)
println (Thread.CurrentThread (). GetName)
Thread.Sleep (2000)
}
}
}
Object Second_actor extends Actor {
Def Act () {
for (I <-1 to 10) {
println ("Step further:" + i)
println (Thread.CurrentThread (). GetName)
Thread.Sleep (2000)
}
}
}
Object Hello_actor {
def main (args:array[string]): Unit = {
First_actor.start ()
Second_actor.start ()
}
}
Report:
This blog description:
1. Organize your ideas and improve yourself.
2. Be educated in Liaoliang teacher, what to gain, so recommend.
3. Blog focus on practice, superfluous words are not much to say, are doing technology.
4. Information from DT Big Data Dream Factory public account: Dt_spark.?
DT Big Data Dream Factory's public number is Dt_spark, every day will have big data actual combat video release, please continue to study.
Liaoliang DT Big Data dream factory Scala all videos, PPT and code in Baidu Cloud disk link:http://pan.baidu.com/share/home?uk=4013289088#category/type=0& Qq-pf-to=pcqq.group
Liaoliang "Scala Beginner's introductory classic video course" http://edu.51cto.com/lesson/id-66538.html
Liaoliang "Scala Advanced Classic Video Course" http://edu.51cto.com/lesson/id-67139.html
The first experience of Scala concurrent programming and its application in spark source code Scala learning notes-56