TypeScript get 与 set 的使用

简介: TypeScript get 与 set 的使用
class Person {
  // 姓氏
  firstName: string
  // 名字
  lastName: string
  // 信息
  private _age: number = 20 
  // 构造方法
  constructor(firstName: string, lastName: string) {
    this.firstName = firstName
    this.lastName = lastName
  }
  // 读取(get)
  get fullName () {
    return this.firstName + '-' + this.lastName
  }
  // 设置(set)
  set fullName (val) {
    let names = val.split('-')
    this.firstName = names[0]
    this.lastName = names[1]
  }
  // 获取年龄
  get age (): number {
    return this._age
  }
  // 设置年龄,支持修饰符,不写默认就是 public
  public set age (val) {
    this._age = val
  }
}
相关文章
|
7月前
|
缓存 监控 Java
ThreadLocal 源码解析get(),set(), remove()用不好容易内存泄漏
ThreadLocal 源码解析get(),set(), remove()用不好容易内存泄漏
87 1
|
7月前
idea快速生成get set 构造方法的快捷键
idea快速生成get set 构造方法的快捷键
233 0
|
7月前
|
存储 NoSQL Ubuntu
在Ubuntu上安装Redis并学习使用get、set和keys命令
在Ubuntu上安装Redis并学习使用get、set和keys命令
|
1月前
|
Java Windows
IDEA不使用lombok,如何快速生成get和set方法
【11月更文挑战第10天】在 IntelliJ IDEA 中生成 `get` 和 `set` 方法有多种方式:通过菜单操作、使用快捷键或自定义模板。菜单操作包括选择“Code”菜单中的“Generate...”,快捷键为“Alt + Insert”。自定义模板可在“File”->“Settings”->“Editor”->“Code Style”->“Java”中设置。批量生成时,可多选变量一次性生成。
idea按住alt + insert 没有出现get和set方法怎样解决
idea按住alt + insert 没有出现get和set方法怎样解决
|
2月前
|
C#
SET访问器和GET访问器
SET访问器和GET访问器
34 2
|
4月前
|
API
【Azure Key Vault】.NET 代码如何访问中国区的Key Vault中的机密信息(Get/Set Secret)
【Azure Key Vault】.NET 代码如何访问中国区的Key Vault中的机密信息(Get/Set Secret)
|
4月前
|
Java Linux 开发者
|
4月前
|
缓存 NoSQL Redis
【Azure Redis 缓存】Azure Cache for Redis 是否记录具体读/写(Get/Set)或删除(Del)了哪些key呢?
【Azure Redis 缓存】Azure Cache for Redis 是否记录具体读/写(Get/Set)或删除(Del)了哪些key呢?
|
4月前
Intellij idea 生成带注释的get/set
Intellij idea 生成带注释的get/set
125 0