gpt4 book ai didi

c++ - 如何为三元运算符强制斩线?

转载 作者:行者123 更新时间:2023-12-03 07:03:22 24 4
gpt4 key购买 nike

如何强制切碎(或保持手动切碎)三元运算符线。

// clang-formatted
int foobar = bar ? a : b;

// expected
int foobar2 = bar
? a
: b;
我从 microsoft 开始风格。
这些是 .clang-format 中适用的(我认为)设置文件,我有什么遗漏吗?
AllowShortBlocksOnASingleLine: true
AlignOperands: true
BreakBeforeTernaryOperators: true

最佳答案

部分关闭 clang 格式怎么样?像:

// clang-format off

int foobar2 = bar
? a
: b;

// clang-format on

关于c++ - 如何为三元运算符强制斩线?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64700127/

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