-1

我的 java 代码在视觉上结构不正确,所有约 1000 个单词的代码都在一行上。

有没有办法修复函数和子函数间距在视觉上格式化的结构......?

谢谢,

4

6 回答 6

3

Different IDEs have different shortcuts to reformat code. If you're using:

Netbeans - Ctrl + Shift + F. Eclipse - Ctrl + A to highlight all code, and Ctrl + I to indent it. Or you could just hold down Ctrl + Shift + F

Edit: Check this out if my answer was not sufficient.

于 2013-08-11T06:51:30.200 回答
3

您还可以使用此在线格式化程序:

漂亮的打印机

于 2013-08-11T06:28:02.410 回答
0

Jalopy是 Sun Java 编程语言的源代码格式化程序。

它根据一些可广泛配置的规则来布局任何有效的 Java 源代码;满足某种编码风格,而不会给单个开发人员带来格式负担。

Jalopy 的功能包括:

- Brace style transformation
- Fine-grained white space settings
- Indentation
- Intelligent line wrapping
- Code separation
- Javadoc auto-generation
- Header/Footer templates
- Powerful command-line interface
- Several Plug-ins
于 2013-08-11T06:28:40.917 回答
0

任何 Java IDE 都可以重新格式化代码。

许多“对程序员友好”的文本编辑器都有支持代码重新格式化的“java 模式”。

周围有一些命令行 Java 缩进/缩进工具……如果您愿意浏览 Google 搜索结果。(搜索“java indenter tool”或“java formatter tool”。)

于 2013-08-11T06:30:12.237 回答
0

取决于您使用的编辑器。如果您使用像 Eclipse 这样的 IDE,将会有一个“代码清理”功能,它会尝试将您的代码格式化为当前的偏好。

如果您使用的是 vi 或 emacs - 据我所知,没有那么多。

于 2013-08-11T06:27:17.567 回答
0

如果您使用的是 Eclipse:

首选项 -> Java -> 代码样式 -> 格式化程序 -> 编辑 -> 换行选项卡 -> 将“最大线宽”设置为 80 或其他一些限制

于 2013-08-11T06:35:39.493 回答