Netbeans 格式化问题

发布于 2024-10-30 01:23:49 字数 653 浏览 0 评论 0原文

我正在尝试将我的格式设置为我的教授希望我的课程使用的方式,一切都正确,除了公共和私人有自己的线路并且无法找到摆脱它的选项。感谢您的帮助!我会发布一张照片,但我想你在第一次注册帐户后就不能这样做了。

现在格式化后看起来像这样:

public
    boolean add(T payload)
{
    abarr_ListNode<T> nextNode = new abarr_ListNode<T>(payload);
    abarr_ListNode<T> firstNode = getFirstNode();
    abarr_ListNode<T> lastNode = getLastNode();

我希望它看起来像这样:

public boolean add(T payload)
{
    abarr_ListNode<T> nextNode = new abarr_ListNode<T>(payload);
    abarr_ListNode<T> firstNode = getFirstNode();
    abarr_ListNode<T> lastNode = getLastNode();

谢谢!

I am trying to set my formatting to the way my professor wants it for my class, and everything is right except that public and private have their own line and cannot find the option to get rid of that. Thanks for the help!! Id post a picture but i guess you cant do that after you first make an account.

Right now it looks like this after it is formatted:

public
    boolean add(T payload)
{
    abarr_ListNode<T> nextNode = new abarr_ListNode<T>(payload);
    abarr_ListNode<T> firstNode = getFirstNode();
    abarr_ListNode<T> lastNode = getLastNode();

Id like it to look like this:

public boolean add(T payload)
{
    abarr_ListNode<T> nextNode = new abarr_ListNode<T>(payload);
    abarr_ListNode<T> firstNode = getFirstNode();
    abarr_ListNode<T> lastNode = getLastNode();

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

凉世弥音 2024-11-06 01:23:49

对于修饰符(公共、私有等),请检查以下内容:

工具 -->选项 -->编辑-->
格式化。

语言下拉列表中选择Java
下拉列表。

类别中选择对齐
下拉列表。

确保未选中修饰符复选框。

要将大括号放在新行上(来自同一格式选项卡):

从类别下拉列表中选择大括号
下拉列表。

从以下选项中选择换行
大括号中的下拉列表
展示位置
部分与
你。

For the modifier (public, private etc...) check the following:

Tools --> Options --> Editor -->
Formatting.

Select Java from the Languages drop
down list.

Select Alignment from the Category
drop down list.

Ensure that the after modifiers checkbox is unchecked.

To place the curly-brace on a new line (from the same formatting tab):

Select Braces from the Category drop
down list.

Select New Line from whichever of
the drop down lists in the Braces
Placement
Section is relevant to
you.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文