gpt4 book ai didi

c++ - 如何使我的代码语句以 clang 格式出现在一行中?

转载 作者:行者123 更新时间:2023-12-02 10:29:06 25 4
gpt4 key购买 nike

我创建了一个 .clang 格式,但找不到导致此问题的行。我希望各个语句在单独的行上,即使它们很长,也不要将它们分成多行。我试图将 ColumnLimit 增加到 150 仍然无法获得所需的格式。
我正在尝试使我的代码看起来像这样(在一行中)-

std::cout << "Congratulations, you sorted the list.\n" << "You needed " << score << " reversals." << std::endl;
std::vector<uint32_t> returnVector(uint32_t *LongNameForParameter1, double *LongNameForParameter2, const float &LongNameForParameter3,const std::map<std::string, int32_t> &LongNameForParameter4)
但是使用这种 .clang-format 它看起来像这样
std::cout << "Congratulations, you sorted the list.\n"
<< "You needed " << score << " reversals." << std::endl;
std::vector<uint32_t> returnVector(uint32_t *LongNameForParameter1, double *LongNameForParameter2, const float &LongNameForParameter3,
const std::map<std::string, int32_t> &LongNameForParameter4)
我的 .clang 格式
BasedOnStyle: LLVM
AccessModifierOffset: '-2'
AlignConsecutiveMacros: 'true'
AlignConsecutiveAssignments: 'true'
AlignTrailingComments: 'true'
AllowShortCaseLabelsOnASingleLine: 'false'
AllowShortIfStatementsOnASingleLine: Never
AllowShortLoopsOnASingleLine: 'false'
BreakBeforeBraces: Stroustrup
ColumnLimit: '150'
CompactNamespaces: 'false'
IncludeBlocks: Regroup
IndentCaseLabels: 'true'
IndentPPDirectives: None
IndentWidth: '4'
Language: Cpp
NamespaceIndentation: All
ReflowComments: 'true'
SortIncludes: 'true'
SortUsingDeclarations: 'true'
SpaceAfterCStyleCast: 'true'
SpaceAfterLogicalNot: 'false'
SpaceBeforeAssignmentOperators: 'true'
SpaceBeforeCpp11BracedList: 'true'
SpaceBeforeCtorInitializerColon: 'true'
SpaceBeforeInheritanceColon: 'true'
SpaceBeforeParens: Never
SpaceBeforeRangeBasedForLoopColon: 'false'
SpaceInEmptyParentheses: 'true'
SpacesInAngles: 'false'
SpacesInParentheses: 'false'
SpacesInSquareBrackets: 'false'
Standard: Auto
TabWidth: '4'

最佳答案

使用 clang-format 时,您应该摆脱格式比它更好的想法。正确配置样式后,请接受它并记录错误,如果有不正确的更改。
在这种情况下,ColumnLimit是正确的改变。根据您的屏幕,您可能希望在此处使用不同的值。该数字是可以放在单行上的字符数(如果制表符被空格替换)。如果超过这个数字,它总是会 split 。
最好的办法是通过键入 # 来可视化这些字符数量。 150 次。这可以帮助您确定数字是否足够好或需要更改。请记住,此限制适用于您的所有代码。
正如评论中已经提到的,您可以添加 // clang-format off禁用更改和// clang-format on重新启用格式化。但是,这种情况不适合这样做。

关于c++ - 如何使我的代码语句以 clang 格式出现在一行中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63027040/

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