C++ 中的缩进建设者

发布于 2024-08-18 14:34:18 字数 296 浏览 5 评论 0原文

C++ Builder 中,如何确保正确嵌套代码,例如:

void func () {

...
..

)

C++正确嵌套的构建器只能这样做:

void func ()

{

...
...

}

这是非常有压力的,因为我总是必须手动纠正。那么我怎样才能在第一个实例中使代码缩进呢?

In C++ Builder, how can I make sure that even correctly nested code like:

void func () {

...
..

)

C++ Builder correctly nested only doing so:

void func ()

{

...
...

}

This is very stressful, because I always have to correct by hand. So how can I make which indents code as well in the first instance?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(4

倒带 2024-08-25 14:34:18

C++Builder 2010 中的代码格式化程序应该会自动为您完成此操作。 (它是用 CTRL-D 调用的)您必须将首选项设置为您喜欢的代码格式,但这是最新版本中的一个实时节省新功能。

The code formatter in C++Builder 2010 should do this automatically for you. (It is invoked with CTRL-D) You’ll have to set the preferences to how you like your code to be formatted, but this is a real time saver new with this most recent release.

耳钉梦 2024-08-25 14:34:18

选择该块,然后按 CTRL+SHIFT+I。这是 Borland C++ 6 中的。

Select the block, then press CTRL+SHIFT+I. This is in Borland C++ 6.

萌辣 2024-08-25 14:34:18

我正在使用这个免费工具:

http://www.cnpack.org/index.php? lang=en

使用制表符将标记的块向左或向右移动。

I am using this free tools:

http://www.cnpack.org/index.php?lang=en

using tabs to shift marked blocks to left or right.

回梦 2024-08-25 14:34:18

我没有要运行的副本,但文档提到“缩进、空格和换行符”作为“工具 > 选项”对话框的格式化程序选项卡下的一些选项。

您要查找的内容可能位于“换行符”部分下。

I don't have a copy of this to run, but the documentation mentions "Indentation, Spaces, and Line breaks" as some of the options under the formatter tab of the "Tools > Options" dialog.

What you're looking for is probably under the "Line Breaks" section.

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