格式化函数参数

发布于 2024-12-27 19:29:10 字数 385 浏览 1 评论 0原文

您是否知道有任何工具或程序能够美化函数输入参数,使变量左对齐,如下例所示?

我现在正在看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 技术交流群。

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

发布评论

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

评论(1

酷到爆炸 2025-01-03 19:29:10

看看astyle。它可以做你想要的(甚至更多),但你必须设置参数。

Take a look into astyle. It does what you want (and more), but you have to set parameters.

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