Tagged Questions
The curly-braces tag has no wiki summary.
44
votes
13answers
7k 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 cursor to it.
38
votes
6answers
11k views
Eclipse jump to closing brace
What is the keyboard short cut in Eclipse to jump to the closing brace of a scope?
19
votes
10answers
5k 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 ...
18
votes
13answers
2k views
Do you use curly braces for additional scoping? [closed]
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 above link, Eli ...
15
votes
10answers
2k 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 . . .
...
15
votes
6answers
5k 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 that I missed.
Trying ...
14
votes
3answers
1k views
C# Switch statement with/without curly brackets… what's the difference?
Has C# always permitted you to omit curly brackets inside a switch() statement between the case: statements?
What is the effect of omitting them, as javascript programmers often do?
Example:
...
11
votes
5answers
857 views
why results varies upon placement of curly braces in javascript code
i have read this javascript article, where an exmaple is shown , Please explain why below codes return different output due to changes the place of curly braces {
curly brace { on new line
...
10
votes
4answers
1k views
JavaScript: When should I use a semicolon after curly braces?
Many times I've seen a semicolon used after a function declaration, or after the anonymous "return" function of a Module Pattern script. When is it appropriate to use a semicolon after curly braces?
9
votes
7answers
334 views
Can Someone Explain This Snippet (Why Are These Braces Here)?
I apologize for this overly simplistic question, but I can't seem to figure out this example in the book I'm reading:
void f5()
{
int x;
{
int y;
}
}
What are the braces ...
7
votes
3answers
2k 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}" />}
*
* @author King Cong
*
*/
...
6
votes
1answer
120 views
std::array<T> initialization
A std::array<T> is essentially a C-style array wrapped in a struct. The initialization of structs requires braces, and the initialization of arrays requires braces as well. So I need two pairs ...
6
votes
1answer
130 views
initializer list as argument to operator[]
This question is related to the one discussed here.
I try to use an initializer list to create an argument to be passed to operator[].
#include <string>
#include <vector>
struct A {
...
6
votes
3answers
437 views
Curly braces inside Javascript parameters for methods
What do the curly braces surrounding javascript parameters for methods do?
var port = chrome.extension.connect({name: "testing"});
port.postMessage({found: (count != undefined)});
6
votes
8answers
898 views
Extra brace brackets in C++ code
Sometimes you run into code that has extra brace brackets, that have nothing to do with scope, only are for readability and avoiding mistakes.
For example:
GetMutexLock( handle ) ;
{
// brace ...
6
votes
5answers
230 views
C# scoping operator
back in school, we wrote a compiler where curly braces had the default behavior of executing all expressions, and returning the last value... so you could write something like:
int foo = { ...
6
votes
3answers
436 views
C code involving {}
I saw this in some C code:
Wininfo W = { sizeof(Wininfo) };
What the heck does this mean?
5
votes
6answers
138 views
PHP - If/else, for, foreach, while - without curly braces?
Something that really would like to know but never found out are shortcuts in PHP.
I am currently coding a function with a foreach loop with just a single statement inside. I tried to omit the curly ...
5
votes
2answers
132 views
paredit curly brace matching in swank-clojure repl
I am using emacs 24 on Windows 7 and have installed technomancy's clojure-mode along with paredit 23 beta. I load the source file from my leiningen project and get a repl using clojure-jack-in. The ...
5
votes
1answer
1k views
Can I make Visual Studio place curly braces on the same line as an if statement (in HTML)?
In Visual Studio while designing MVC views (in .aspx or .ascx files) I often use if statements. When I auto-format (Ctrl-K,D), VS wraps the braces in this really ugly and hard to read way:
<% if ...
5
votes
6answers
178 views
Is for ({statements;}; condition; {statements;}) legal C?
Bad style notwithstanding, is it legal C to have a for loop with braces inside the parens? Like this:
char *a = "a ";
char *b = "b ";
for ( { int aComesFirst = 1;
char *first = a;
...
4
votes
2answers
70 views
In AS3, can member variables / methods / getters & setters be wrapped up in one common access modifier?
Is there a way to declare a bunch of members with one common access modifier? I do believe this can be done in C++ and some other languages, curious if it exists in AS3 though.
Instead of:
class ...
4
votes
4answers
152 views
String.Format with curly braces
Our low level logging library has to cope with all sorts of log messages sent to it.
Some of these messages include curly braces (as part of the text), and some contain parameters to be formatted as ...
4
votes
2answers
183 views
How to disable automatic line break when inserting two curly braces in vim?
Whenever I type two curly braces ({{), I get something like that:
{
|
}
| is used to describe the position of the cursor.
This behaviour is totally annoying, e.g. when using different template ...
4
votes
6answers
446 views
How can can I get emacs to insert closing braces automatically
I've just started using emacs, and there's one feature I'd really like, and searching around a bit was fruitless. I hope someone else has done this because I don't want to learn elisp just yet.
void ...
4
votes
2answers
1k views
How to make eclipse automatically add braces to an IF statement?
In Java the following is completely valid:
if (x == null)
Y();
else
Z();
I personally don't like it at all. I like all my IF statements to have braces:
if (x == null) {
Y();
} else {
...
4
votes
6answers
283 views
Odd compiler error on if-clause without braces
The following Java code is throwing a compiler error:
if ( checkGameTitle(currGame) )
ArrayList<String> items = parseColumns( tRows.get(rowOffset+1), currGame, time, method );
...
4
votes
5answers
551 views
PCRE: Find matching brace for code block
Is there a way for PCRE regular expressions to count how many occurrences of a character it encounters (n), and to stop searching after it has found n occurrences of another character (specifically { ...
4
votes
2answers
192 views
Curly braces without variable declaration
Why sometimes C code gets wrapped with curly braces without declaring a variable in them?
e.g. (from FreeRTOS source code, file 'tasks.c'):
portENTER_CRITICAL();
{
xTicks = xTickCount;
}
...
4
votes
6answers
768 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) {
// ...
} else {
// ...
3
votes
1answer
93 views
Are curly braces required in @interface declarations in Objective-c?
The following code compiles:
@interface MyClass : ParentClass // missing {
// missing }
@property (nonatomic, copy) NSString *myString;
@end
I'm wondering if the curly braces in @interface ...
3
votes
4answers
147 views
When are curley braces required around single statements?
In my answer here: C# Lock syntax - 2 questions, LukeH pointed out that try...catch...(finally) statements require curly braces.
I found the answers as to why, found here ( Why Do try ... catch ...
3
votes
4answers
426 views
Does using curly braces go against the “Ruby way”?
I've been using Ruby for about two weeks, and I've not been programming for too terribly long, but I'm coming at the language from a C-style background (C++, C#, etc). Anyway - a good friend and ...
3
votes
2answers
300 views
Bash Script To Change Curly Brace Style
I have a CSS file and a PHP file that I received from an overseas outsource partner. He prefers curly braces on a new line, while I am rather Old School and prefer the curly brace on the same line as ...
3
votes
7answers
412 views
What is the name of this convention for curly braces?
I'm a bit puzzled by the number of developers I see writing methods and classes with curly braces below the class name or the method. What convention are they following?
Sun clearly states that the ...
3
votes
1answer
595 views
Braces: [Brackets], (Parentheses) & {Curlies} in Ruby & Rails
So the loose tolerance of Ruby to use braces sometimes and not REQUIRE them has led to alot of confusion for me as I'm trying to learn Rails and when/where to use each and why?
Sometimes parameters ...
3
votes
8answers
166 views
Basic Code Layout Question
HI, I have a simple question, I've asked 3-4 different people and have had different answers from each of them.
Which code layout is better and used more?
does it really matter as long as it's ...
3
votes
3answers
1k 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 can't find a proper ...
3
votes
3answers
1k 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=something" and ":hi ...
3
votes
4answers
693 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 switch statements, ...
2
votes
2answers
32 views
Using curly braces in an email / article to insert the customers name
I have looked and looked for an example on this, but the only ones I have found are echoing the result of the str replace like this :
$malestr = str_replace("{name}", "$name", $rawstring);
echo ...
2
votes
1answer
89 views
Meaning of Dollar Sign & Curly Braces Containing Javascript Block Outside of HTML Script Tag
I'm currently reading 'Javascript Web Applications' (O'Reilly, Alex MacCaw) and very early on there's a code snippet which might appear to execute a JS function, within an HTML document, yet it is not ...
2
votes
2answers
139 views
C# String.Format with Curly Bracket in string [closed]
Possible Duplicate:
Escape curly brace '{' in String.Format
c# has a String.Format method that allows you to format a string but inserting params with the tokens {0} {1}
I am ...
2
votes
2answers
123 views
C++0x: Why forbid “braced-init-list” in “operator[]”?
I just noticed, that in N3291 a change is marked (5.2.1 Subscripting [expr.sub]):
Before, it was ok to overload operator[] with the new braced-init-list:
struct X {
Z ...
2
votes
2answers
92 views
What is the practical use of arbitrary code block (by curly brackets) in C#
I have seen an example with the switch statement where each case block was surrounded by the curly brackets, like this:
switch (itemType)
{
case ItemType.TV:
{
String message = ...
2
votes
5answers
95 views
Question about “this” in JavaScript
This may be a newbie question. I've used javascript for years but have only started to get "serious" about it. I have a question about "this"
var defaults = {
baseId : 'item_',
baseName : ...
2
votes
4answers
885 views
Should I use curly brackets or concatenate variables within strings?
Straight forward question: Is there an advantage or disadvantage to concatenating variables within strings or using curly braces instead?
Concatenated:
$greeting = "Welcome, ".$name."!";
Curly ...
2
votes
1answer
401 views
Putting Curly braces into javascript if's without curly braces?
What I want:
Transforming this:
if(a == b)
//statement
into:
if(a == b)
{ //statement }
Simply put: I want my single line if's to have their braces once again, and I need some program or plugin ...
2
votes
0answers
769 views
Resharper Braces auto-format
I have a problem with Resharper and auto formating braces.
Since a while Resharper don't add closing braces while I am typing an opening brace.
Also when I am typing a closing brace at the last line ...
2
votes
2answers
306 views
JavaScript formatting: must braces be on the same line as the if/function/etc keyword? [closed]
Possible Duplicate:
why results varies upon placement of curly braces in javascript code
We have company policies that dictate that in PHP opening curly braces should be on their own lines ...