欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

使用 Intellij IDEA 时折叠代码

程序员文章站 2022-05-08 22:13:21
...

Intellij IDEA中折叠代码的方式,如下:

1. 针对类、方法的折叠

快捷键: ctrl + -ctrl + + 适用于扩展

2. 自定义折叠

自定义折叠有两种类型,分别为visual studio stylenetbeans style 。在折叠标识上,可以使用1中的快捷键进行快速折叠或展开。

a. vistual studio style

// region description
here is your logical code 
// endregion

b. netbeans style

// <editor-fold description="">
here is your logical code 
// </editor-fold>

另外,可以采用快捷键快速在折叠的地方进行跳转。具体的快捷键可能设置的会不同,可以使用ctrl + shift + A 搜索custom folding 进行查看。