本文介绍了Scala的好处是什么?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我是一名Java开发人员,我想知道如何在Java程序中使用Scala?
I am a Java developer and I want to know how I can use Scala in my Java programs?
推荐答案
Go read 关于Scala。使用Scala,您可以保留:
Go read Daniel Spiewak's excellent blog series about Scala. With Scala you can keep:
- 所有Java库
- 运行的所有优点JVM(普遍存在,管理工具,分析,垃圾收集等)
但是你可以编写Scala代码:
But you can write Scala code:
- 比Java更简洁明了(特别是使用更多功能样式,例如在集合库中)
- 它有闭包和函数作为语言的一部分
- 它有运算符重载(从使用的角度来看)
- 它有mixins(即包含实现的接口)
- more concise and clear than Java (especially using more functional style, such as in the collections library)
- it has closures and functions as part of the language
- it has operator overloading (from the perspective of usage)
- it has mixins (i.e. interfaces which contain implementation)
这篇关于Scala的好处是什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!