Tagged Questions
The braces tag has no wiki summary.
35
votes
9answers
2k views
Strange behavior using braces in Java
When I run the following code:
public class Test {
Test(){
System.out.println("1");
}
{
System.out.println("2");
}
static {
System.out.println("3");
}
public static void ...
31
votes
4answers
2k views
What is the formal difference in Scala between braces and parentheses, and when should they be used?
Can someone outline the formal difference between passing arguments to functions in parentheses () and in braces {}? The feeling I got from the Programming in Scala book is that Scala's pretty ...
6
votes
6answers
152 views
Why brackets are necessary in catch block in java?
In java if we have to execute only one statement after if or for the brackets are not necessary. We can write:
if(condition)
executeSingleStatement();
or
for(init;condition;incr)
...
6
votes
3answers
263 views
Why do methods with only one statement need braces?
public void Finalise()
ProcessFinalisation(true);
Doesn't compile, but the correct version:
public void Finalise()
{
ProcessFinalisation(true);
}
Compiles fine (of course).
If I am ...
5
votes
2answers
310 views
Is this valid Java code? My teacher claims it is, but I'm really not so sure
Granted he didn't show us actual code here, just mentioned it, I found it extremely bizarre.
For example, according to what he said this is valid Java:
public class Person
{
String Name;
int ...
5
votes
2answers
538 views
How to put braces in django templates?
I need to produce an id surrounded by braces ( for example "{1234}" ). With the django template language, braces are also used to start a variable substitution, so I have some trouble in obtaining ...
4
votes
7answers
2k views
How can I extract a string between matching braces in Perl?
My input file is as below :
HEADER
{ABC|*|DEF {GHI 0 1 0} {{Points {}}}}
{ABC|*|DEF {GHI 0 2 0} {{Points {}}}}
{ABC|*|XYZ:abc:def {GHI 0 22 0} {{Points {{F1 1.1} {F2 1.2} {F3 1.3} {F4 1.4}}}}}
...
3
votes
3answers
63 views
PHP curly braces in array notation
I'd just come across a very weird bit of php code:
$oink{'pig'} = 1;
var_dump($oink);
$oink{'pig'} = '123123';
echo $oink{'pig'}; /* => 123123 */
echo $oink['pig']; /* => 123123 */
It works ...
3
votes
3answers
290 views
Why is this Java code in curly braces ({}) outside of a method? [closed]
Possible Duplicate:
Is this valid Java code? My teacher claims it is, but I'm really not so sure.
Hello,
I am getting ready for a java certification exam and I have seen code LIKE this ...
3
votes
1answer
266 views
Is it better to use braces or no braces for single-line if blocks? [closed]
What is better coding practice for single-line code blocks following an if statement - braces or no braces? Just to avoid too many "Well, it depends on what language you're using..." answers, let's ...
3
votes
1answer
450 views
How to change brace indentation levels in Emacs?
I can't for the life of me find any answer to this through conventional Internet means, so I'm hoping for some help.
Emacs for me right now tends to do indentation on braces as follows:
if( ... )
...
3
votes
2answers
704 views
Linked Braces in Visual Studio 2008
How can I, create a vertical line between the open brace and close brace in Visual Studio 2008 (C#), if you can't understand about what I'm talking, there's a following picture(Pic1).
[Pic1 - I want ...
2
votes
2answers
852 views
Eclipse Java Formatter. New line before curly braces, but not after
we have here at work a very strange coding convention, and I didn't managed to setup the Java Formatter in Eclipse right to do what I want. The convention says:
Before a curly brace "{" there ...
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
4answers
713 views
regular expression for content within braces
is there a regular expression to match the content within braces. For example with the following:
d = {'key': {'a': [1,2,3]}}
I would want to match {'key': {'a': [1,2,3]}} and {'a': [1,2,3]}, but ...
1
vote
3answers
38 views
Bash not comparing strings properly
This is my bash file
#!/bin/sh
ENV=DEV
echo "env: $ENV"
if [[ "$ENV" == DEV* ]]; then
RUNTIME_CLASSPATH=$(cat ../build/dev.classpath)
echo "cp: $RUNTIME_CLASSPATH"
fi
echo "done"
And here's ...
1
vote
3answers
72 views
php braces usage
I'm not able to understand braces goal in the situation below and I find no serious documentation about braces usage.
See the example below:
$var = array('a','b','c','d');
foreach($var as ...
1
vote
2answers
235 views
Highlight BOTH matching braces into Gedit
Any way to highlight both braces on Gedit?, it's annoying when you have several braces joined and is not clear which one are you pointing.
Highlighting both braces would be a simple solution to know ...
1
vote
3answers
320 views
Scoping rules in Java
Can someone help me understand the scoping rules in Java? This is clearly not valid:
{
int i = 0;
System.out.println(i); // fine, of course
}
System.out.println(i); // ...
1
vote
3answers
257 views
Customizing the formatting output of .sass?
#foo {
color:black; }
Is there some sort of option to prefix a newline before the trailing } when a .css file is generated from .sass?
I would appreciate it if someone included an example of ...
1
vote
1answer
207 views
How to jump to Next statement from For or For Each (like braces but in vb) in Visual Studio 2008
Does anyone know the keyboard shortcut to jump from the start of a For / For Each (or If, While, etc.) block to the end of it in visual studio if you're using vb.net? I found the following which I ...
1
vote
4answers
487 views
What is the name of this particular indent style? (“braces stacked”)
I've seen this questions here.
I'm wondering if there exists an official name for the following indent style:
void fooBar(String s)
{
while (true)
{
// ... do something
}
}
When ...
0
votes
2answers
21 views
PHP inlcude top file and bottom file containg ifelse cyrly braces
Can someone tell me how i can include_once a php file at the top that contains an if statement with an open curly brace,
And then include a file at the bottom that contains the closing curly brace to ...
0
votes
1answer
91 views
Missing brackets? Where?
I'm getting an error along the lines of 'warning missing braces around initializer for room', while I do understand the meaning of the error, I don't understand why it's being said. Here's the code:
...
0
votes
2answers
36 views
which style do you prefer? function name(){} or function name() + newline { [closed]
So...some people prefer
function name(){
}
but others prefer
function name()
{
}
what's the advantage of using the later one? and which one do you prefer?
0
votes
4answers
100 views
Unexpected closing curly brace } error
I know this topic has been beaten into the ground, but I'm really stumped. I can't figure out why I'm getting an unexpected } error.
My problem is with a code snippet I've added to a Paypal credit ...
0
votes
1answer
67 views
DTE -> Getting Matching Brace in Visual Studio Macros?
Is there any function available to get the position of the matching brace/quote/parenthesis/bracket for the current selection?
(I'm looking for the macro equivalent of the Edit.GotoBrace function.)
0
votes
4answers
317 views
if/else format within while loop
while(true)
{
cout << "Name: ";
getline(cin, Name);
if(Name == "Stop")
break;
cout << "Additional Name - Y/N: ";
getline(cin, additional);
if (additional == "Y")
...
0
votes
1answer
299 views
Opening Curly Bracket (Brace) position on code
I'm used to write code (in C, Perl, or any language with curly brackets) like:
Loops:
for (int i = 0; i < 10; i++) { // <-----
...
}
Conditions:
if (i == 10) { // <-----
...
}
...
0
votes
1answer
81 views
A regular expression that moves opening { braces to a new line, for C/C++/PHP/etc code
This kind of code structure makes, IMHO, code less readable:
int func() {
[...]
}
It's just a matter of taste, but I prefer this one:
int func()
{
[...]
}
So I've trying to make a regular ...
0
votes
2answers
266 views
Matching innermost braces with regex or strpos?
I have a sort of mini parsing syntax I made up to help me streamline my view code in cakephp. Basically I have created a table helper which, when given a dataset and (optionally) a set of options for ...
0
votes
5answers
351 views
RegEx for String.Format
Hiho everyone! :)
I have an application, in which the user can insert a string into a textbox, which will be used for a String.Format output later. So the user's input must have a certain format:
I ...
0
votes
4answers
223 views
Script to covert between Cuddle and Allman indent styles?
I believe it is called "cuddle" style:
function foo() {
// blah
}
function foo()
{
// blah
}
Does anyone know of any scripts that will go through a file and toggle in one direction or the ...
-3
votes
2answers
97 views
braces instead of brackets when displaying a list with string formatting [closed]
I got an assignment for university and I've done nearly the whole program, but I'm stuck on a couple of small things.
The list displayed in the professor's example is delineated with {} while in my ...