C++ 中的缩进建设者
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
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.
选择该块,然后按 CTRL+SHIFT+I。这是 Borland C++ 6 中的。
Select the block, then press CTRL+SHIFT+I. This is in Borland C++ 6.
我正在使用这个免费工具:
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.
我没有要运行的副本,但文档提到“缩进、空格和换行符”作为“工具 > 选项”对话框的格式化程序选项卡下的一些选项。
您要查找的内容可能位于“换行符”部分下。
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.