使用 Intellij IDEA 时折叠代码
程序员文章站
2022-05-08 22:13:21
...
Intellij IDEA
中折叠代码的方式,如下:
1. 针对类、方法的折叠
快捷键: ctrl
+ -
,ctrl
+ +
适用于扩展
2. 自定义折叠
自定义折叠有两种类型,分别为visual studio style
和netbeans 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
进行查看。
推荐阅读
-
Win10系统电脑在使用浏览器播放视频时蓝屏错误代码0x000008e的多种解决方法
-
使用VSCode编写jsx代码时如何实现标签自动补齐
-
idea创建一个入门Spring Boot项目(controller层)使用Moven代码管理
-
新手使用zend studio时如何解决代码提示太弱的有关问题
-
新手使用zend studio时如何解决代码提示太弱的有关问题
-
Java servlet 使用 PrintWriter 时的编码与乱码的示例代码
-
详解在IDEA中使用MyBatis Generator逆向工程生成代码
-
IntelliJ IDEA使用maven实现tomcat的热部署
-
在Intellij Idea中使用jstl标签库的方法
-
使用IntelliJ IDEA 2017.2.5 x64中的Spring Initializr插件快速创建Spring Boot/Cloud工程(图解)