简体   繁体   中英

Indention in C++ Builder

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?

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.

I am using this free tools:

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

using tabs to shift marked blocks to left or right.

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

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.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM