Intellij - 缺少基本意图动作
Intellij - Missing basic intention actions
我完全不知道为什么 IntelliJ IDEA 2022.1.1(社区版)在创建新的 Java class 并在一些随机字段中输入后,不显示基本的意图操作像生成构造函数、getter、setter 等。
我知道它看起来很琐碎 - 尽管我是 Java 初学者和 IntelliJ IDEA 的新手,但这是第一次发生:
class Product {
String product;
double price;
}
您似乎使用了错误的快捷方式(Show Intention Actions 或 Alt+Enter 而不是 Generate 或 Alt+Insert).
我完全不知道为什么 IntelliJ IDEA 2022.1.1(社区版)在创建新的 Java class 并在一些随机字段中输入后,不显示基本的意图操作像生成构造函数、getter、setter 等。 我知道它看起来很琐碎 - 尽管我是 Java 初学者和 IntelliJ IDEA 的新手,但这是第一次发生:
class Product {
String product;
double price;
}
您似乎使用了错误的快捷方式(Show Intention Actions 或 Alt+Enter 而不是 Generate 或 Alt+Insert).