Kotlin单例、数据类、静态

文章目录

  • [1. 数据类](#1. 数据类)
  • [2. 单例](#2. 单例)
  • [3. 静态](#3. 静态)

1. 数据类

kotlin 复制代码
data class Cellphone(val brand: String, val price: Double)

自动生成了get set hashcode equals toString等方法。通过反编译(打开AS,在Tools-Kotlin-ShowBytecode-Decompile)可以得到如下结果

kotlin 复制代码
public final class Cellphone {
   @NotNull
   private final String brand;
   private final double price;

   @NotNull
   public final String getBrand() {
      return this.brand;
   }

   public final double getPrice() {
      return this.price;
   }

   public Cellphone(@NotNull String brand, double price) {
      Intrinsics.checkNotNullParameter(brand, "brand");
      super();
      this.brand = brand;
      this.price = price;
   }

   @NotNull
   public final String component1() {
      return this.brand;
   }

   public final double component2() {
      return this.price;
   }

   @NotNull
   public final Cellphone copy(@NotNull String brand, double price) {
      Intrinsics.checkNotNullParameter(brand, "brand");
      return new Cellphone(brand, price);
   }

   // $FF: synthetic method
   public static Cellphone copy$default(Cellphone var0, String var1, double var2, int var4, Object var5) {
      if ((var4 & 1) != 0) {
         var1 = var0.brand;
      }

      if ((var4 & 2) != 0) {
         var2 = var0.price;
      }

      return var0.copy(var1, var2);
   }

   @NotNull
   public String toString() {
      return "Cellphone(brand=" + this.brand + ", price=" + this.price + ")";
   }

   public int hashCode() {
      String var10000 = this.brand;
      return (var10000 != null ? var10000.hashCode() : 0) * 31 + Double.hashCode(this.price);
   }

   public boolean equals(@Nullable Object var1) {
      if (this != var1) {
         if (var1 instanceof Cellphone) {
            Cellphone var2 = (Cellphone)var1;
            if (Intrinsics.areEqual(this.brand, var2.brand) && Double.compare(this.price, var2.price) == 0) {
               return true;
            }
         }

         return false;
      } else {
         return true;
      }
   }
}

2. 单例

class改成object,其他的跟java里面差不多

kotlin 复制代码
object Singleton {
}

3. 静态

companion object

@JvmField - 修饰静态变量

@JvmStatic - 修饰静态方法

@JvmField 和 @JvmStatic 只能写在 object 修饰的类或者 companion object 里,写法虽然有些别扭,但是效果是真的是按 static 来实现的

kotlin 复制代码
class BookKotlin {
    companion object {
        @JvmField
        var nameStatic: String = "BB"
        @JvmStatic
        fun speakStatic() {
        }
    }
}
相关推荐
Deryck_德瑞克几秒前
Java集合笔记
java·开发语言·笔记
MengYiKeNan6 分钟前
C++二分函数lower_bound和upper_bound的用法
开发语言·c++·算法
孟诸10 分钟前
计算机专业毕设-校园新闻网站
java·vue·毕业设计·springboot·课程设计
会发paper的学渣11 分钟前
python 单例模式实现
开发语言·python·单例模式
学步_技术19 分钟前
Python编码系列—Python桥接模式:连接抽象与实现的桥梁
开发语言·python·桥接模式
计算机学姐20 分钟前
基于SpringBoot+Vue的篮球馆会员信息管理系统
java·vue.js·spring boot·后端·mysql·spring·mybatis
kakwooi21 分钟前
JavaEE---Spring IOC(2)
java·spring·java-ee
柴华松22 分钟前
GPU训练代码
开发语言·python
好兄弟给我起把狙28 分钟前
[Golang] Select
开发语言·后端·golang
Echo_Lee030 分钟前
C#与Python脚本使用共享内存通信
开发语言·python·c#