Skip to content

琐碎知识点

字数
51 字
阅读时间
1 分钟

1. lombok替代getter和setter

Java
import lombok.Data;

@Data // 起到getter和setter的作用
public class User{
	private String name;
	private int age;
}

贡献者

The avatar of contributor named as freeway348 freeway348

文件历史

撰写