Scala 入门-模式匹配

2024-06-03 13:38
文章标签 入门 scala 模式匹配

本文主要是介绍Scala 入门-模式匹配,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

专栏原创出处:github-源笔记文件 ,github-源码 ,欢迎 Star,转载请附上原文出处链接和本声明。

Scala 编程语言专栏系列笔记,系统性学习可访问个人复盘笔记-技术博客 Scala 编程语言

什么是模式匹配

模式匹配用来检查某一个值是否适用于定义好的一个固定模式,匹配成功可以解构出该值的所有组成元素。
模式匹配是 Java 中的 switch 语句的升级版,同样可以用于替代一系列的 if/else 语句。

  • 「案例类」 非常适用于模式匹配,具体内容可以参考《案例类》。

  • 可以利用「提取器对象」中的 unapply 方法来定义非案例类对象的匹配。

语法

一个模式匹配语句包括一个待匹配的值,match 关键字,以及至少一个在 {}中包含的 case 语句。

  import scala.util.Randomval x: Int = Random.nextInt(10)// 具体值的模式匹配x match {case 0 => "zero"case 1 => "one"case 2 => "two"case _ => "other"  // 表示匹配其余所有情况,在这里就是其他可能的整型值。}// match 表达式是有返回值的,因为所有的情况均返回 string,所以 matchTest 函数的返回值类型是 stringdef matchTest(x: Int): String = x match {case 1 => "one"case 2 => "two"case _ => "other"}

匹配类型

案例类的模式匹配

Scala 会为案例类自动创建伴生对象,而伴生对象中定义了 unapply 方法。
因此案例类很适合用于模式匹配,可以通过模式匹配获取成员属性。

  abstract class Notificationcase class Email(sender: String, title: String, body: String) extends Notificationcase class SMS(caller: String, message: String) extends Notificationcase class VoiceRecording(contactName: String, link: String) extends Notificationdef showNotification(notification: Notification): String = {notification match {// 对象的 sender 和 title 属性在返回值中被使用,而 body 属性则被忽略,故使用 _ 占位符代替。case Email(sender, title, _) =>s"You got an email from $sender with title: $title"case SMS(number, message) =>s"You got an SMS from $number! Message: $message"case VoiceRecording(name, link) =>s"you received a Voice Recording from $name! Click the link to hear it: $link"}}val someSms = SMS("12345", "Are you there?")val someVoiceRecording = VoiceRecording("Tom", "voicerecording.org/id/123")println(showNotification(someSms))// You got an SMS from 12345! Message: Are you there?println(showNotification(someVoiceRecording))// you received a Voice Recording from Tom! Click the link to hear it: voicerecording.org/id/123

模式守卫

为了让匹配更加具体,可以使用模式守卫,也就是在模式后面加上 if (boolean expression)

  abstract class Notificationcase class Email(sender: String, title: String, body: String) extends Notificationcase class SMS(caller: String, message: String) extends Notificationcase class VoiceRecording(contactName: String, link: String) extends Notificationdef show(notification: Notification): String = {notification match {case Email(sender, title, _) =>s"You got an email from $sender with title: $title"case SMS(number, message) =>s"You got an SMS from $number! Message: $message"case VoiceRecording(name, link) =>s"you received a Voice Recording from $name! Click the link to hear it: $link"}}def importantShow(notification: Notification, important: Seq[String]): String = {notification match {// 此处定义的模式匹配为守卫模式,匹配成功之后还需要进行 if 判断// 只有是 Email 类型,并且 important 集合中存在 sender 属性才可以匹配成功case Email(sender, _, _) if important.contains(sender) =>"You got an email from special someone!"case SMS(number, _) if important.contains(number) =>"You got an SMS from special someone!"case other =>// nothing special, delegate to our original show functionshow(other)}}val important = Seq("867-5309", "jenny@gmail.com")val sms = SMS("867-5309", "Are you there?")val sms2 = SMS("867-5111", "I'm here! Where are you?")val voice = VoiceRecording("Tom", "voicerecording.org/id/123")println(importantShow(sms, important))// You got an SMS from special someone!println(importantShow(sms2, important))// You got an SMS from 867-5111! Message: I'm here! Where are you?println(importantShow(voice, important))// you received a Voice Recording from Tom! Click the link to hear it: voicerecording.org/id/123

仅匹配类型

本模式匹配适用于不同类型的对象需要调用不同的方法的情况。
一般使用类型的首字母作为 case 的标识符。

{abstract class Devicecase class Phone(model: String) extends Device {def screenOff = "Turning screen off"}case class Computer(model: String) extends Device {def screenSaverOn = "Turning screen saver on..."}// goIdle 函数对不同类型的 Device 有着不同的表现,采用类型的首字母作为 case 的标识符:p、cdef goIdle(device: Device) = device match {case p: Phone => p.screenOffcase c: Computer => c.screenSaverOn}
}

中缀表达式的模式匹配

中缀表达式是一个算数逻辑公式的表示方法,将 操作符 置于 操作数 的中间。

  // 例如 :: 是 scala.collection.immutable.List 中定义的一个方法// def ::[B >: A] (x: B): List[B] = new scala.collection.immutable.::(x, this)1 :: List(2, 3) = List(2, 3).::(1) = List(1, 2, 3)// 中缀表达式用于模式匹配List(1,2,3,4,5) match {// first 为第一个元素,second 为第二个元素,tail 为剩余元素// 即 List(1,2,3,4,5) = 1 :: 2 :: List(3,4,5)case first :: second :: tail => println(tail)}// List(3, 4, 5)

什么是密封类

「特质」 和 「类」 可以用 sealed 标记为密封的,被标记后其所有子类必须与它存在于相同的文件中,从而保证所有子类型都是已知的。
用于模式匹配,当抽象类加了 sealed 之后,scala 在编译的时候会进行检查,如果有漏掉的 case 类型,会警告提示。

  // Couch 和 Chair 必须和 Furniture 定义在相同的文件中sealed abstract class Furniturecase class Couch() extends Furniturecase class Chair() extends Furniture// 由于 Man 加了 sealed 关键字,模式匹配时,scala 会检测是否遗漏匹配的类型,编译时会警告提醒sealed abstract class Mancase object American extends Mancase object Chinese extends Mancase object Russia extends Mandef from(m: Man) = m match {case American ⇒ println("American")case Chinese ⇒ println("Chinese")}// Warning:(61, 29) match may not be exhaustive.It would fail on the following input: Russia//    def from(m: Man) = m match {// 如果确定不会有 Russia 类型的对象传入,可以使用下面的方法去掉警告提示def from(m: Man) = (m : @unchecked) match {case American ⇒ println("American")case Chinese ⇒ println("Chinese")}

这篇关于Scala 入门-模式匹配的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1027140

相关文章

Spring Security 从入门到进阶系列教程

Spring Security 入门系列 《保护 Web 应用的安全》 《Spring-Security-入门(一):登录与退出》 《Spring-Security-入门(二):基于数据库验证》 《Spring-Security-入门(三):密码加密》 《Spring-Security-入门(四):自定义-Filter》 《Spring-Security-入门(五):在 Sprin

数论入门整理(updating)

一、gcd lcm 基础中的基础,一般用来处理计算第一步什么的,分数化简之类。 LL gcd(LL a, LL b) { return b ? gcd(b, a % b) : a; } <pre name="code" class="cpp">LL lcm(LL a, LL b){LL c = gcd(a, b);return a / c * b;} 例题:

Java 创建图形用户界面(GUI)入门指南(Swing库 JFrame 类)概述

概述 基本概念 Java Swing 的架构 Java Swing 是一个为 Java 设计的 GUI 工具包,是 JAVA 基础类的一部分,基于 Java AWT 构建,提供了一系列轻量级、可定制的图形用户界面(GUI)组件。 与 AWT 相比,Swing 提供了许多比 AWT 更好的屏幕显示元素,更加灵活和可定制,具有更好的跨平台性能。 组件和容器 Java Swing 提供了许多

【IPV6从入门到起飞】5-1 IPV6+Home Assistant(搭建基本环境)

【IPV6从入门到起飞】5-1 IPV6+Home Assistant #搭建基本环境 1 背景2 docker下载 hass3 创建容器4 浏览器访问 hass5 手机APP远程访问hass6 更多玩法 1 背景 既然电脑可以IPV6入站,手机流量可以访问IPV6网络的服务,为什么不在电脑搭建Home Assistant(hass),来控制你的设备呢?@智能家居 @万物互联

poj 2104 and hdu 2665 划分树模板入门题

题意: 给一个数组n(1e5)个数,给一个范围(fr, to, k),求这个范围中第k大的数。 解析: 划分树入门。 bing神的模板。 坑爹的地方是把-l 看成了-1........ 一直re。 代码: poj 2104: #include <iostream>#include <cstdio>#include <cstdlib>#include <al

MySQL-CRUD入门1

文章目录 认识配置文件client节点mysql节点mysqld节点 数据的添加(Create)添加一行数据添加多行数据两种添加数据的效率对比 数据的查询(Retrieve)全列查询指定列查询查询中带有表达式关于字面量关于as重命名 临时表引入distinct去重order by 排序关于NULL 认识配置文件 在我们的MySQL服务安装好了之后, 会有一个配置文件, 也就

音视频入门基础:WAV专题(10)——FFmpeg源码中计算WAV音频文件每个packet的pts、dts的实现

一、引言 从文章《音视频入门基础:WAV专题(6)——通过FFprobe显示WAV音频文件每个数据包的信息》中我们可以知道,通过FFprobe命令可以打印WAV音频文件每个packet(也称为数据包或多媒体包)的信息,这些信息包含该packet的pts、dts: 打印出来的“pts”实际是AVPacket结构体中的成员变量pts,是以AVStream->time_base为单位的显

C语言指针入门 《C语言非常道》

C语言指针入门 《C语言非常道》 作为一个程序员,我接触 C 语言有十年了。有的朋友让我推荐 C 语言的参考书,我不敢乱推荐,尤其是国内作者写的书,往往七拼八凑,漏洞百出。 但是,李忠老师的《C语言非常道》值得一读。对了,李老师有个官网,网址是: 李忠老师官网 最棒的是,有配套的教学视频,可以试看。 试看点这里 接下来言归正传,讲解指针。以下内容很多都参考了李忠老师的《C语言非

MySQL入门到精通

一、创建数据库 CREATE DATABASE 数据库名称; 如果数据库存在,则会提示报错。 二、选择数据库 USE 数据库名称; 三、创建数据表 CREATE TABLE 数据表名称; 四、MySQL数据类型 MySQL支持多种类型,大致可以分为三类:数值、日期/时间和字符串类型 4.1 数值类型 数值类型 类型大小用途INT4Bytes整数值FLOAT4By

【QT】基础入门学习

文章目录 浅析Qt应用程序的主函数使用qDebug()函数常用快捷键Qt 编码风格信号槽连接模型实现方案 信号和槽的工作机制Qt对象树机制 浅析Qt应用程序的主函数 #include "mywindow.h"#include <QApplication>// 程序的入口int main(int argc, char *argv[]){// argc是命令行参数个数,argv是