学习Scala:从HelloWorld开始

来源:互联网 发布:叫号机软件 编辑:程序博客网 时间:2024/05/22 10:41

最近在学习Scala语言,虽然还没有完全学通, 但是隐约可以体会到Scala的简洁和强大。 它既能让程序员使用函数式编程, 也提供了全面的面向对象编程。 在刚刚开始读《Scala编程》的时候, 刚读了几页, 我就被Scala语言吸引住了, 所以就一直读下去。 在学习的过程中, 也会有一些感悟, 对于一些原理, 也会尽量搞明白。 所以打算一边学习, 一边写博客, 虽然目前还没有深入, 但是还是有很多东西值得写下来。


我们知道, Scala也是一种运行于Java虚拟机上的语言, 既然能够运行于虚拟机之上, 那么它必然可以编译成class文件, 因为虚拟机只认class文件。 所以, scalac编译器将.scala源文件, 编译成class文件, 然后这些class文件被虚拟机加载并执行。



所以, 如果你对class文件格式和java虚拟机足够了解的话, 那么学习scala语言就会相对简单。Java文件编译成class文件, 而Scala源文件也是编译成class文件, 虽然他们语法大相径庭, 但是最后殊途同归。  如果我们能基于class文件分析scala的行为, 有助于理解scala语言。有人说scala的语法很多很难, 其实语法终归是写法, class文件的格式是不变的, 可以把scala的语法看成java语法的高级语法糖。


本系列博客基于分析class文件, 来分析scala的语法。 如果你对class文件格式不熟悉, 建议读一下我的专栏, 该专栏是专门分析class文件和JVM行为的。 专栏地址:

http://www.l99.com/EditPicture_photoView.action?pictureId=7173524http://www.l99.com/EditPicture_photoView.action?pictureId=7173367http://www.l99.com/EditPicture_photoView.action?pictureId=7173243http://www.l99.com/EditPicture_photoView.action?pictureId=7173288http://www.l99.com/EditPicture_photoView.action?pictureId=7173295http://www.l99.com/EditPicture_photoView.action?pictureId=7173315http://www.l99.com/EditPicture_photoView.action?pictureId=7173335http://www.l99.com/EditPicture_photoView.action?pictureId=7173358http://www.l99.com/EditPicture_photoView.action?pictureId=7173169http://www.l99.com/EditPicture_photoView.action?pictureId=7173211http://www.l99.com/EditPicture_photoView.action?pictureId=7173112http://t.163.com/event/info/eventId/-2668672463340390471http://t.163.com/event/info/eventId/-3367961461597871358http://t.163.com/event/info/eventId/-8458992390032524226http://t.163.com/event/info/eventId/-613222104751385524http://t.163.com/event/info/eventId/4630701366932477272http://t.163.com/event/info/eventId/-7075919847215230807http://t.163.com/event/info/eventId/5144362919521608026http://t.163.com/event/info/eventId/-7597138610661700124http://t.163.com/event/info/eventId/-5474814235462484280http://t.163.com/event/info/eventId/-5840835514889478057http://t.163.com/event/info/eventId/8736102956440700687http://t.163.com/event/info/eventId/-2509565538033737401http://t.163.com/event/info/eventId/-5258399702905043903http://t.163.com/event/info/eventId/8762308348339893470http://t.163.com/event/info/eventId/-2312812808309161904http://t.163.com/event/info/eventId/1198873333503352842http://t.163.com/event/info/eventId/8085250437016536547http://t.163.com/event/info/eventId/-5252255031467546664http://t.163.com/event/info/eventId/-5215673093968434920http://t.163.com/event/info/eventId/-948812304438999681http://t.163.com/event/info/eventId/3853311591011470908http://t.163.com/event/info/eventId/3847809219331675998http://t.163.com/event/info/eventId/5386847999541537355http://t.163.com/event/info/eventId/-6351726709951934902http://t.163.com/event/info/eventId/-4089957967167274551http://t.163.com/event/info/eventId/7483367469262394396http://t.163.com/event/info/eventId/7850104458577660241http://t.163.com/event/info/eventId/-144576945151229667http://t.163.com/event/info/eventId/-4264587904408216831http://t.163.com/event/info/eventId/6267954341913992884http://t.163.com/event/info/eventId/7254435358389062253http://t.163.com/event/info/eventId/-3417599356899224166http://t.163.com/event/info/eventId/-80443668803304514http://t.163.com/event/info/eventId/8598334175701743907http://t.163.com/event/info/eventId/-6510129575899120934http://t.163.com/event/info/eventId/-8731749465111166301http://t.163.com/event/info/eventId/-5436292847642165047http://t.163.com/event/info/eventId/7604483541648930739http://t.163.com/event/info/eventId/644370667449208697http://t.163.com/event/info/eventId/8677328662005111290http://t.163.com/event/info/eventId/-5397368813060916808http://t.163.com/event/info/eventId/5203466743367513384http://t.163.com/event/info/eventId/1066563716593133090http://t.163.com/event/info/eventId/8706908346141418661http://t.163.com/event/info/eventId/5239054577735053756

0 0
原创粉丝点击