官术网_书友最值得收藏!

Scala basics

Scala modernizes Java's object-oriented approach while adding in the mix functional programming. It compiles into byte-code, and it can be executed on any Java virtual machine; thus, libraries and classes of Java and Scala communicate seamlessly.

Scala, similar to Java, is a statically typed programming language but can infer type information. It can infer that t is a String type in the following example:

val t = "Text"

Semicolons are not required when terminating commands. Variables are declared, with var and constants with val, and Scala favors immutability, which means that we should try to minimize the usage of variables.

Scala is fully object-oriented and functional. There are no primitives, like float or int only objects such as Int, Long, Double, String, Boolean, Float. Also there is no null.

The Scala equivalent of Java interfaces is called trait. Scala allows traits to be partially implemented, that is, it is possible to define default implementations for some methods. A Scala class can extend another class and implement multiple traits using the with keyword.

Lists are the most valuable data type in any functional language. Lists are immutable and homogeneous, which means that all elements of a list are of the same type. Lists provide methods and higher-order functions. Some notable ones are as follows:

  • list1 ::: list2: This is used to append the two lists
  • list.reverse: This is used to return a list in reverse order
  • list.mkString(string): This is used to concatenate the list elements using a string in between them
  • list.map(function): This is used to return a new list with a function applied to each element
  • list.filter(predicate): This is used to return a list with elements for which the predicate is true
  • list.sortWith(comparisonFunction): This is used to return a sorted list using a two parameter comparison function

Understanding the higher order functions of Scala Lists is very beneficial for developing in Scalding. In the next chapter, we will see that Scalding provides implementations of the same functions with similar functionality which work on pipes that contain tuples.

For example, the Scala function flatMap removes one level of nesting by applying a function to each element of each sublist. The same function in Scalding, also removes one level of nesting by iterating through a collection to generate new rows.

Another interesting Scala function is groupBy, which returns a Map of key values, where the keys are the results of applying a function to each element of the list, and the values are a List of values so that applying the function to each value yields that key:

List("one", "two", "three").groupBy(x => x.length) gives 
Map(5 -> List(three), 3 -> List(one, two))

Tuples are containers that, unlike an array or a list, can hold objects with different types. A Scala tuple consists of 2 to 22 comma-separated objects enclosed in parentheses and is immutable. To access the nth value in a tuple t, we can use the notation t._n, where n is a literal integer in the range 1 (not 0!) to 22.

To avoid the primitive null that causes many issues, Scala provides the Option. Options are parameterized types. For example, one may have an Option[String] type with possible values Some(value) (where the value is of correct type) or None (when no value has been found).

Methods in Scala are public by default and can have private or protected access similar to Java. The syntax is:

def methodName(arg1: type, argN:type) { body } // returns Unit
def methodName(arg1: type, .. , argN:type) : returnType = { body }

Another aspect of Scala is function literals. A function literal (also called anonymous function) is an alternate syntax for defining a function. It is useful to define one-liners and pass a function as an argument to a method. The syntax is (arg1: Type1, ..., argN:TypeN) => expression. Thus, when implementing the function in string.map(function), we can avoid defining an external function by using the following:

"aBcDeF".map(x => x toLower) // or for a single parameter, just _
"aBcDeF".map(_.toLower)
主站蜘蛛池模板: 宜州市| 辉南县| 常州市| 壤塘县| 石河子市| 黄陵县| 龙陵县| 宝兴县| 博白县| 新乡市| 奉贤区| 和平区| 余庆县| 连城县| 通榆县| 金阳县| 含山县| 莒南县| 富裕县| 昂仁县| 宁津县| 张家口市| 临潭县| 武义县| 永寿县| 德化县| 永兴县| 昆明市| 福鼎市| 潜江市| 绥江县| 时尚| 永州市| 元阳县| 玛纳斯县| 汝州市| 雷州市| 公安县| 沾化县| 蓬莱市| 诏安县|