gpt4 book ai didi

java - 如何在Eclipse中实现这样的格式化?

转载 作者:太空宇宙 更新时间:2023-11-04 11:24:19 25 4
gpt4 key购买 nike

我有一个格式如下的函数:

private void verifyDatatypeTables(
final DynamoDBMapper mapper,
final List<Datatype> datatypeMissingEntries) {
final List<Datatype> datatypeEntries = new ArrayList<>();
this.mapToListDatatypeTables(datatypeEntries);
final List<Datatype> datatypeEntriesInTable =
this.dbUtilityDatatype.scanRecord(new DynamoDBScanExpression(), true);
}

这会产生一些阅读问题。我希望它的格式如下:

private void verifyDatatypeTables(
final DynamoDBMapper mapper,
final List<Datatype> datatypeMissingEntries
) {
final List<Datatype> datatypeEntries = new ArrayList<>();
this.mapToListDatatypeTables(datatypeEntries);
final List<Datatype> datatypeEntriesInTable =
this.dbUtilityDatatype.scanRecord(new DynamoDBScanExpression(), true);
}

如何在 Eclipse 中实现这样的格式化?

最佳答案

Preferences -> Java -> Code Style -> Formatter -> edit -> Parentheses -> Method declaration -> separate lines 

Line Wrapping -> Method declarations -> Parameters -> Line Wrapping policy -> Wrap all elements, every element on a new line

关于java - 如何在Eclipse中实现这样的格式化?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44546467/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com