Tagged Questions

6
votes
10answers
378 views

Why enclose blocks of C code in curly braces?

I am looking at some C code, and have noticed it is full of these curly braces surrounding blocks of code without any sort of control structure. Take a look-see: //do some stuff …
4
votes
6answers
850 views

Eclipse jump to closing brace

What is the keyboard short cut in Eclipse to jump to the closing brace of a scope?
2
votes
3answers
160 views

Initializing temporary aggregate object using curly braces.

Let's say I have a class: class Aggregate { public: int x; int y; }; I know how to initialize an object using curly braces: Aggregate a1 = { 1500, 2900 }; But I ca …
6
votes
2answers
230 views

Go to Matching Brace in Visual Studio?

Is there a way in Visual Studio 2008 to go from a closing brace to it's opening brace? I've found a fair amount of stuff about highlighting the brace, but nothing about moving the …
1
vote
3answers
475 views

Is there any IDE or Visual Studio/Mono/SharpDevelop plugin for braceless C#?

When I saw this article about using a python-like sintax (indentation based, without curly braces, syntax) for C#, I begun to wonder: can I have an IDE that parses and compiles it? …
3
votes
6answers
405 views

PHP curly brace syntax for member variable

First question on SO and it's a real RTFM candidate. But I promise you I've looked and can't seem to find it. I'll happily do a #headpalm when it turns out to be a simple thing tha …
0
votes
2answers
169 views

Cuddle braces in flex

How can I force flex to cuddle my curly-braces instead of putting them on a new line?
1
vote
2answers
73 views

What are the names of the different Bracing/Indenting styles in C/PHP/Java etc?

In languages that use 'curly braces' for code blocks, and where whitespace isn't a concern (C, Java, PHP) - What are the names for the different bracing/indenting styles? I rememb …
4
votes
6answers
398 views

Reformat C++ braces without changing indentation?

We would like to make our C++ brace style more consistent. Right now, our code contains a mix of: if (cond) { // ... } else { // ... } ...and: if (cond) { // . …
2
votes
7answers
208 views

Does bracket placement affect readability? [closed]

Possible Duplicates: Formatting of if Statements Is there a best coding style for identations (same line, next line)? Best way to code stackoverflow style 'questions' / 't …
2
votes
3answers
364 views

How to set curly braces’/parentheses’/square brackets’/arithmetic operators’ syntax highlight color in VIM?

How do I highlight operators/parentheses/brackets/etc. in VIM? I'm not interested in coloring matching or unmatching parentheses/brackets. I've tried ":hi cBracket/whatnot guifg= …
2
votes
4answers
326 views

When do you use code blocks?

When do you use code blocks in C/C++/C#, etc.? I know the theoretical reason behind them, but when do you use them in real programs? EDIT: I have just realised that I use them in …
4
votes
1answer
391 views

How do you escape curly braces in javadoc inline tags, such as the {@code} tag.

/** * Gets the meatball icon for a nincompoop. * * <p> * Example: {@code <custom:meatball color="<%= Meatball.RED %> nincompoop="${person}" />} * * @autho …
15
votes
13answers
1k views

Do you use curly braces for additional scoping?

I mean other than using it when required for functions, classes, if, while, switch, try-catch. I didn't know that it could be done like this until I saw this SO question. In the …
14
votes
9answers
1k views

What do curly braces by themselves mean in java?

for example, I have the following code (generated, not written) if(node.getId() != null) { node.getId().apply(this); } { List<PExp> copy = new …