kotlin历程
- 2011年7月,JetBrains推出Kotlin项目,这是一个面向JVM的新语言
- 2012年2月,JetBrains以Apache 2许可证开源此项目
- 2016年2月15日,Kotlin v1.0发布。这被认为是第一个官方稳定版本,并且JetBrains已准备从该版本开始的长期向后兼容性
- 2017年,Google宣布在Android上为Kotlin提供一等支持
kotlin的优势
- 比java 更快
如下:创建1000000 个对象
public class JPerson {
public JPerson(String name, Integer age, Integer sex) {
this.name = name;
this.age = age;
this.sex = sex;
}
private String name ;
private Integer age;
private Integer sex ;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Integer getAge() {
return age;
}
public void setAge(Integer age) {
this.age = age;
}
public Integer getSex() {
return sex;
}
public void setSex(Integer sex) {
this.sex = sex;
}
}
执行结果
public class ReflectDemo {
public static void main(String[] args) throws InterruptedException {
int i =0;
long start = System.currentTimeMillis();
while (i<1000000){
JPerson jPerson = new JPerson("zhangsan",1,1);
i++ ;
}
long end = System.currentTimeMillis();
System.out.println("java本次耗时:"+(end-start));
}
}
data class KPerson(val name: String, val age: