以下是一份为期四周的 Scala 学习计划,每天一个脚本,逐渐熟悉 Scala 的基础和函数式编程风格,特别是适用于大数据开发的知识点。我们不涉及面向对象的内容,专注于 Scala 的函数式编程和实用功能。
目标:熟悉 Scala 的基本语法、数据类型和函数式编程的核心概念。
// Hello, Scala
println("Hello, Scala!")
// 基本数据类型
val intVal: Int = 42
val doubleVal: Double = 3.14
val strVal: String = "Scala is fun!"
val boolVal: Boolean = true
// 打印值
println(s"Int: $intVal, Double: $doubleVal, String: '$strVal', Boolean: $boolVal")
// 定义一个简单函数
def add(x: Int, y: Int): Int = x + y
// 调用函数
val result = add(10, 20)
println(s"10 + 20 = $result")
// 函数可以嵌套
def greet(name: String): String = {
def addExclamation(s: String): String = s + "!"
addExclamation(s"Hello, $name")
}
println(greet("Scala Learner"))
// 高阶函数:接受函数作为参数
def operate(x: Int, y: Int, f: (Int, Int) => Int): Int = f(x, y)
// 使用高阶函数
val sum = operate(3, 5, _ + _)
val product = operate(3, 5, _ * _)
println(s"Sum: $sum, Product: $product")
// 集合操作:map 和 filter
val numbers = List(1, 2, 3, 4, 5)
val doubled = numbers.map(_ * 2)
val evens = numbers.filter(_ % 2 == 0)
println(s"Doubled: $doubled, Evens: $evens")
// 模式匹配基础
def describe(x: Any): String = x match {
case i: Int if i > 0 => s"A positive integer: $i"
case i: Int if i <= 0 => s"A non-positive integer: $i"
case s: String => s"A string: $s"
case _ => "Something else"
}
println(describe(42))
println(describe("Hello"))
println(describe(-1))
// Option 类型避免空指针问题
def safeDivide(a: Int, b: Int): Option[Int] = if (b != 0) Some(a / b) else None
val result1 = safeDivide(10, 2)
val result2 = safeDivide(10, 0)
println(result1.getOrElse("Undefined"))
println(result2.getOrElse("Undefined"))
// 递归计算阶乘
def factorial(n: Int): Int = {
if (n == 0) 1
else n * factorial(n - 1)
}
println(s"5! = ${factorial(5)}")
目标:深入理解 Scala 的函数式编程特性,掌握不可变集合、匿名函数和函数组合。
// 使用匿名函数
val add = (x: Int, y: Int) => x + y
println(s"3 + 4 = ${add(3, 4)}")
// 不可变列表
val nums = List(1, 2, 3, 4, 5)
val squared = nums.map(x => x * x)
println(s"Squared: $squared")
// 使用 reduce 和 fold
val nums = List(1, 2, 3, 4, 5)
val sum = nums.reduce(_ + _)
val product = nums.fold(1)(_ * _)
println(s"Sum: $sum, Product: $product")
// Lazy 计算
lazy val lazyVal = {
println("Evaluating lazyVal...")
42
}
println("Before accessing lazyVal")
println(s"lazyVal = $lazyVal")
// 函数柯里化
def multiply(x: Int)(y: Int): Int = x * y
val double = multiply(2) _
println(s"Double 5 = ${double(5)}")
// Map 和 FlatMap 的区别
val nums = List(1, 2, 3)
val mapped = nums.map(x => List(x, x * 2))
val flatMapped = nums.flatMap(x => List(x, x * 2))
println(s"Mapped: $mapped")
println(s"FlatMapped: $flatMapped")
// 部分函数
val divideBy: PartialFunction[Int, Int] = {
case x if x != 0 => 42 / x
}
println(divideBy(2)) // 21
println(divideBy.isDefinedAt(0)) // false
目标:掌握与大数据开发相关的 Scala 知识点。
// Tuple 和解构
val pair = (1, "Scala")
val (num, lang) = pair
println(s"Number: $num, Language: $lang")
// 隐式参数
implicit val defaultDiscount: Double = 0.1
def calculatePrice(price: Double)(implicit discount: Double): Double = price * (1 - discount)
println(calculatePrice(100))
import scala.util.{Try, Success, Failure}
val result = Try(10 / 0)
result match {
case Success(value) => println(s"Success: $value")
case Failure(exception) => println(s"Failure: ${exception.getMessage}")
}
val nums = List(1, 2, 3, 4, 5, 6)
val grouped = nums.groupBy(_ % 2)
println(grouped)
val add10: Int => Int = _ + 10
val multiply2: Int => Int = _ * 2
val composed = add10.andThen(multiply2)
println(composed(5)) // (5 + 10) * 2 = 30
import scala.io.Source
val lines = Source.fromFile("data.txt").getLines()
lines.foreach(println)
val nums = (1 to 1000000).toList
val sum = nums.par.reduce(_ + _)
println(sum)
目标:通过综合练习和小项目进一步提升 Scala 能力。
val data = List(" Scala ", " Spark ", " Big Data ")
val cleaned = data.map(_.trim.toLowerCase)
println(cleaned)
val text = List("hello world", "hello scala", "hello big data")
val wordCounts = text.flatMap(_.split(" ")).groupBy(identity).mapValues(_.size)
println(wordCounts)
import scala.concurrent.Future
import scala.concurrent.ExecutionContext.Implicits.global
val future = Future {
Thread.sleep(1000)
42
}
future.foreach(result => println(s"Result: $result"))
使用库如 json4s
或 circe
解析 JSON。
如实现一个简单的日志分析器或数据清洗脚本。
希望这个计划对你有帮助!每天花 30 分钟左右即可,逐步提升 Scala 技能。