美文网首页Scala编程
Scala编程详解10:面向对象编程之类

Scala编程详解10:面向对象编程之类

作者: 勇于自信 | 来源:发表于2020-05-26 13:07 被阅读0次

大纲
1、定义一个简单的类
2、field的getter与setter详解
3、constructor详解
4、内部类介绍

1. 定义一个简单的类
object scala_demo07 {
  def main(args: Array[String]): Unit = {
    // 创建类的对象,并调用其方法
    val helloWorld = new HelloWorld
    helloWorld.sayHello()
    print(helloWorld.getName) // 也可以不加括号,如果定义方法时不带括号,则调用方法时也不能带括号

  }
}

// 定义类,包含field以及方法
class HelloWorld {
  private var name = "leo"
  def sayHello() {
    print("Hello, " + name)
  }
  def getName = name
}
2. getter与setter
  • 定义不带private的var field,此时scala生成的面向JVM的类时,会定义为private的name字段,并提供public的getter和setter方法

  • 而如果使用private修饰field,则生成的getter和setter也是private的

  • 如果定义val field,则只会生成getter方法

  • 如果不希望生成setter和getter方法,则将field声明为private[this]
    class Student {
    var name = "leo"
    }

  • 调用getter和setter方法,分别叫做name和name_ =
    val leo = new Student
    print(leo.name)
    leo.name = "leo1"

3. 自定义getter与setter
  • 如果只是希望拥有简单的getter和setter方法,那么就按照scala提供的语法规则,根据需求为field选择合适的修饰符就好:var、val、private、private[this]
  • 但是如果希望能够自己对getter与setter进行控制,则可以自定义getter与setter方法
  • 自定义setter方法的时候一定要注意scala的语法限制,签名、=、参数间不能有空格

object scala_demo07 {
  def main(args: Array[String]): Unit = {
    val leo = new Student
    print(leo.name)
    leo.name = "leo1"
  }
}

class Student {
  private var myName = "leo"
  def name = "your name is " + myName
  def name_=(newValue: String)  {
    print("you cannot edit your name!!!")
  }
}

输出
your name is leoyou cannot edit your name!!!

4. 仅暴露field的getter方法
  • 如果你不希望field有setter方法,则可以定义为val,但是此时就再也不能更改field的值了
  • 但是如果希望能够仅仅暴露出一个getter方法,并且还能通过某些方法更改field的值,那么需要综合使用private以及自定义getter方法
  • 此时,由于field是private的,所以setter和getter都是private,对外界没有暴露;自己可以实现修改field值的方法;自己可以覆盖getter方法
class Student {
  private var myName = "leo"

  def updateName(newName: String) { 
    if(newName == "leo1") myName = newName 
    else print("not accept this new name!!!")
  }

  def name = "your name is " + myName
}
5. private[this]的使用
  • 如果将field使用private来修饰,那么代表这个field是类私有的,在类的方法中,可以直接访问类的其他对象的private field
  • 这种情况下,如果不希望field被其他对象访问到,那么可以使用private[this],意味着对象私有的field,只有本对象内可以访问到
class Student {
  private var myAge = 0
  def age_=(newValue: Int) { 
    if (newValue > 0) myAge = newValue 
    else print("illegal age!") 
  }
  def age = myAge
  def older(s: Student) = {
    myAge > s.myAge
  }
}
6. Java风格的getter和setter方法
  • Scala的getter和setter方法的命名与java是不同的,是field和field_=的方式
  • 如果要让scala自动生成java风格的getter和setter方法,只要给field添加@BeanProperty注解即可
  • 此时会生成4个方法,name: String、name_=(newValue: String): Unit、getName(): String、setName(newValue: String): Unit
    import scala.reflect.BeanProperty
    class Student {
    @BeanProperty var name: String = _
    }
    class Student(@BeanProperty var name: String)
    val s = new Student
    s.setName("leo")
    s.getName()
7. 辅助constructor
  • Scala中,可以给类定义多个辅助constructor,类似于java中的构造函数重载
  • 辅助constructor之间可以互相调用,而且必须第一行调用主constructor
class Student {
  private var name = ""
  private var age = 0
  def this(name: String) {
    this()
    this.name = name
  }
  def this(name: String, age: Int) {
    this(name)
    this.age = age
  }
}
8. 主constructor
  • Scala中,主constructor是与类名放在一起的,与java不同

  • 而且类中,没有定义在任何方法或者是代码块之中的代码,就是主constructor的代码,这点感觉没有java那么清晰
    class Student(val name: String, val age: Int) {
    println("your name is " + name + ", your age is " + age)
    }

  • 主constructor中还可以通过使用默认参数,来给参数默认的值
    class Student(val name: String = "leo", val age: Int = 30) {
    println("your name is " + name + ", your age is " + age)
    }

  • 如果主constrcutor传入的参数什么修饰都没有,比如name: String,那么如果类内部的方法使用到了,则会声明为private[this] name;否则没有该field,就只能被constructor代码使用而已

9. 内部类
  • Scala中,同样可以在类中定义内部类;但是与java不同的是,每个外部类的对象的内部类,都是不同的类
import scala.collection.mutable.ArrayBuffer
class Class {
  class Student(val name: String) {}
  val students = new ArrayBuffer[Student]
  def getStudent(name: String) =  {
    new Student(name)
  }
}

val c1 = new Class
val s1 = c1.getStudent("leo")
c1.students += s1

val c2 = new Class
val s2 = c2.getStudent("leo")
c1.students += s2

相关文章

  • Scala编程详解10:面向对象编程之类

    大纲1、定义一个简单的类2、field的getter与setter详解3、constructor详解4、内部类介绍...

  • 012_scala编程详解:面向对象编程之类

    定义一个简单的类 field的getter和setter详解 private[this]的使用 java风格的ge...

  • scala特性

    为了能用scala开发spark,简单的介绍一下scala特性.scala即面向对象编程,也同时面向方法编程,也可...

  • Scala基础

    Scala概述 Scala设计的目的是整合面向对象编程和函数式编程。Scala运行于Java平台(JVM),并兼容...

  • Scala从入门到小工| 01

    Scala学习之一 Scala概述 scala是一门多范式编程语言,集成了面向对象编程和函数式编程等多种特性。sc...

  • 第一章Scala简介

    1.scala介绍 scala是运行在 JVM 上的多范式编程语言,同时支持面向对象和面向函数编程。 多范式:就是...

  • Scala从入门到精通

    1 初识 Scala 1.1 Scala 概述 Scala 是一门多范式的编程语言,设计初衷是要集成面向对象编程和...

  • Scala 概述

    Scala名称是scalable language,表明可扩展性较强 面向对象编程和函数式编程的结合 Scala代...

  • 大佬用了2个小时讲完了Scala,总计385.76M,附Scal

    前言 Scala 是一门类 Java 的编程语言,它结合了面向对象编程和函数式编程。 Scala 的设计目的是要和...

  • Scala面试题

    scala语言的特点: 集成了面向对象和函数式编程 函数式编程是将计算机的运算视为函数运算 链式编程 Scala中...

网友评论

    本文标题:Scala编程详解10:面向对象编程之类

    本文链接:https://www.haomeiwen.com/subject/rqimahtx.html