格式化函数参数
您是否知道有任何工具或程序能够美化函数输入参数,使变量左对齐,如下例所示?
我现在正在看A-Style。你知道它是否可以为我完成这项工作吗?
我想从这段代码更改
void foo(
int a
,my_long_parameter b
,anotgher_type c
);
为这些代码。
void foo(
int a
,my_long_parameter b
,anotgher_type c
);
Are you aware of any tool or program that is able to beautify the function input parameters making the variable left-aligned like the example below?
I am having a look at A-Style right now. Do you know if it can do that job for me?
I would like to change from this code
void foo(
int a
,my_long_parameter b
,anotgher_type c
);
to these one.
void foo(
int a
,my_long_parameter b
,anotgher_type c
);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看看astyle。它可以做你想要的(甚至更多),但你必须设置参数。
Take a look into astyle. It does what you want (and more), but you have to set parameters.