Intellij IDEA技巧之一键生成构造函数/get/set/toString

【注:此方法适用于所有Intellij平台下的IDE,如Android Studio,WebStorm,PhpStorm…

有这样一个实体类:

public class UserEntity {
    private String id;  //id
    private String name;    //姓名
    private String password;    //密码
    private int gender; //性别,0未知,1男,2女
    private String regTime; //注册时间
}

在Intellij的代码编辑区中,在要生成代码的地方右键 -> Generate...,右面有个快捷键,以后直接用此快捷键更加方便。


Intellij IDEA技巧之一键生成构造函数/get/set/toString_第1张图片
右键 -> Generate...
Intellij IDEA技巧之一键生成构造函数/get/set/toString_第2张图片
Generator

从生成器栏目名就能看出来生成的项目,这里只介绍生成构造函数,其他的也一样。

选择Constructor,然后选择要传入构造函数的字段,OK。


Intellij IDEA技巧之一键生成构造函数/get/set/toString_第3张图片

就可以看到生成的构造函数了。


Intellij IDEA技巧之一键生成构造函数/get/set/toString_第4张图片

你可能感兴趣的:(Intellij IDEA技巧之一键生成构造函数/get/set/toString)