相当于c#中#region的Java

我想在Eclipse中使用区域进行代码折叠; 这怎么可以在Java中完成?

C#中的示例用法:

#region name
//code
#endregion

没有这样的标准等价物。 一些IDE(例如Intellij或Eclipse)可以根据涉及的代码类型(构造函数,导入等)进行折叠,但没有什么比#region更像。


喷气大脑IDEA具有此功能。 您可以使用热键环绕(ctrl + alt + T)。 这只是IDEA功能。

这里的地区看起来像这样:

//region Description

Some code

//endregion

使用Android Studio,请尝试以下操作:

//region VARIABLES
private String _sMyVar1;
private String _sMyVar2;
//endregion

小心: //区域后没有空行...

你会得到:

链接地址: http://www.djcxy.com/p/42585.html

上一篇: Java equivalent to #region in c#

下一篇: XML file replacement program? (web.config/WDP related)