The curly-braces tag has no wiki summary.
-1
votes
0answers
10 views
Notepad++: After Beginning Brace and Enter Insert Closing Brace on Third Line
I have been trying to switch to Notepad++ as my main code editor because I really like it. I have gotten NppAutoIndent and XBrackets Lite to manage the indentation and auto-closing of source files, ...
1
vote
0answers
17 views
Stop Eclipse from sliding curly braces way to the right for methods returning generic types
I configured Eclipse to adhere to my employer's code style, but one tiny detail isn't working right: I told it to put all braces on the next line, unindented, and line wrap method parameters, aligning ...
3
votes
2answers
80 views
For a structure variable,why is the initializer {21,19,3.6} same as {{21,19},3.6},but not vice-versa?
In the following example,I've illustrated this using two structures test1 and test2.The first has two elements-an integer array sized two,and a float element.The second structure has 3 elements,2 ...
0
votes
1answer
36 views
Understand this .bashrc script (curly braces, eval, …)
I have some difficulty understanding what is written in my ubuntu's .bashrc which is shown in part below.
Here is what I don't understand :
What is the purpose of curly braces and the -/+ symbols ...
7
votes
1answer
210 views
Why can in-class initializers only use = or {}?
In-class initializers (C++11 feature) must be enclosed in curly braces or follow a = sign. They may not be specified inside parenthesis.
What is the reason for this?
3
votes
7answers
129 views
What happens to an if statement not followed by curly braces? [closed]
I am trying to understand this code snippet:
class Worker
{
public bool DoThisJob(string job, int numberOfShifts)
{
if (!String.IsNullOrEmpty(currentJob))
return false;
...
0
votes
1answer
33 views
flex using curly braces in XML attributes value
I would like to set up a DataGrid with hard coded XML dataProvider.
One of my attributes value needs to be set to "{*}" which I know is interferring with data binding.
Hence, I tried to replace curly ...
0
votes
2answers
52 views
regex to curly braces on their own or with the 'else' word
I'm trying to to write some custom definitions for the code counting tool cloc, but unfortunately regular expressions are not my strong point.
I'm struggling to write a regex that will match lines ...
10
votes
12answers
269 views
Is there a difference in removing the curly braces from If statements in java [closed]
While watching thenewbostons tutorial on basic java. He teaches us to do if statements like this.(Notice the curly Braces)
if("pie"== "pie"){
System.out.println("Hurrah!");
}
So i tried ...
0
votes
1answer
79 views
How to escape curly braces in razor (e.g. to define an array)
In Razor view I can define an array easily
@{
ViewBag.Title = "_Navigation";
var foo = new string[0];
}
But if I want to define the elements of the string, the natural way would be
@{
...
0
votes
1answer
95 views
Powershell curly braces and variables not being parsed
I'm trying to bulk update a large amount of distribution lists using powershell, I've written this so far:
foreach ($Item in @(Import-Csv -Path "ranks.csv")) {
$Rank = $Item.Rank
...
0
votes
0answers
36 views
A objective reason for the coding style convention of curly braces? [closed]
This is a question that has been bugging me a lot since starting to code, in a variety of languages I've been asked to use my curly braces on the same line as the thing that necessitates them (style ...
4
votes
1answer
101 views
SVG horizontal curly-bracket
I am trying to create a wide horizontal curly-bracket starting with the keyboard character and transforming it.
I started with :
<text x="40" y="120" transform="rotate(90, 40, ...
8
votes
1answer
293 views
Uniform initialization on a vector of vectors of integers
C++11
The program initializes a vector, named myVec, of int vectors, and then uses a loop to print out each inner vector's elements. But I got unexpected results when trying to see what happens when ...
1
vote
1answer
90 views
Can't get move constructor to run
C++11
I'm having trouble using the move constructor. I have a simple container class, called Number, whose only data member is an integer. I have the following code:
//Number.h
#ifndef NUMBER_H
...
4
votes
3answers
198 views
Simple if statement vs. normal if statement
At Java byte code level, is there any difference between an simple if-statement (Example 1) and a normal if-statement (Example 2):
Example 1:
if (cond) statement;
Example 2:
if (cond) {
...
0
votes
3answers
74 views
Expanding variable scope beyond curly braces in Java
Let's say I have the following code block:
int version;
String content;
synchronized (foo) {
version = foo.getVersion();
content = foo.getContent();
}
// Do something with version and ...
0
votes
0answers
177 views
Auto-align of curly braces in C++ code in VS2010
How do I teach Visual Studio 2010 to format
if(f) {
}
as
if(f)
{
}
?
Note 1: I found some solutions for C# (namely to go to Tools->Options->Text Editor->Whatever language->Formatting->New ...
1
vote
1answer
44 views
How can I use a for loop around code blocks enclosed in curly braces?
I am writing a greasemonkey script and using an external script that creates a preferences window. The preferences window is initialized with the following code:
USP.init({
theName: ...
-1
votes
1answer
115 views
SASS vs SCSS - Good and Bad differences [closed]
I am having a very hard time deciding what to choose.
I know about the eradication of {} with Sass and I know how SCSS keeps things a little more similar to the old fashion CSS, but I am reading ...
9
votes
1answer
454 views
How do I disable brace completion in Visual Studio 2012?
I have recently upgraded to Visual Studio 2012. Whenever I stand on a curly opening bracket and press tab, it automatically inserts 2 new lines and a closing bracket.
{|<- cursor
Pressing tab ...
2
votes
0answers
71 views
Checkstyle, missing space after anonymous inner class
Given the following snippet of code:
public void doSomething() {
new Executor() {
@Override
public void doStuff() {
// ...
}
}.execute();
}
...Checkstyle ...
0
votes
1answer
273 views
Curly braces in visual studio running desktop parallels mac
I'm testing visual studio in desktop parallels win7 running on my Macbook air. Everything works fine except that i cannot get curly braces to work inside visual studio.
The Curly braces do work Shift ...
0
votes
3answers
172 views
PHP include files - opening and closing brackets/braces { } for if and while loop
Sperate PHP include files - opening and closing brackets/braces { } for if's and while loop nd closing curly brackets/braces in between files
Hi all , I am working with PHP includes i.e:
...
1
vote
3answers
113 views
Sperate PHP include files - opening and closing brackets/braces { } for if's and while loop nd closing curly brackets/braces in between files
I am working with PHP includes i.e:
include_once("somephpfile.php");
And a CSS/HTML designer that is very problematic. I am trying to keep all PHP away from the designer, as they become very ...
1
vote
3answers
151 views
PHP complex syntax (curly braces) when working with class properties [closed]
I am working through a book on object oriented PHP and have noticed the author using the complex syntax in some instances. In the chapter on inheritance he uses the code below:
// Declare the ...
1
vote
2answers
45 views
Are/were there any browsers that allow control flow constructs to survive script tags?
Whereas, in PHP, it's possible to:
<?PHP if($foo) { ?>
<strong>only appears if $foo is true.</strong>
<?PHP } else { ?>
<em>only appears if $foo is false.</em>
...
0
votes
1answer
44 views
Can curlies be omitted for try and/or catch blocks, as for if and else ones?
if (foo) {
bar;
}
can be shortened to
if(foo) bar;
since it's only one statement in the block.
I'm wondering if the same applies to try/catch... I don't like extra cruft in my code.
1
vote
0answers
117 views
Escape property reference in spring property file
I'm going crazy on an issue that is certainly elementary. I just want to escape my spring propeties file in order to get in my bean property: ${ROOTPATH}/relativePath
I have a simple spring config ...
0
votes
1answer
129 views
How do I change the color of the highlighted matching braces in monotouch?
The highlighted color of the matching braces is difficult to see. How do I change the color to blue or red or something else more noticeable?
I have already looked in the Xamian docs.
1
vote
3answers
148 views
SOLVED: C++ Seg Fault at end of function. Reference line = closing brace
In conclusion: Thanks so much everyone! All the responses posted below were correct. The initial error was me forgetting to leave room for the NULL terminator. Strcpy() is a dangerous function because ...
2
votes
4answers
300 views
Error: 'else' without 'if'
Getting an else without if statement:
import java.util.Scanner;
public class LazyDaysCamp
{
public static void main (String[] args)
{
int temp;
Scanner scan = new ...
28
votes
5answers
989 views
Java comment at end of brace/block
Is it an accepted practice in the Java programming language to end a brace for a code block with a comment that briefly explains what code block the brace closes off? I personally would think that ...
2
votes
1answer
210 views
Allman-style braces in TypeScript
Could the TypeScript compiler be adapted to allow safe use of Allman-style braces in places where it classically breaks JavaScript code? TypeScript is designed to generate idiomatic JavaScript, so the ...
1
vote
4answers
1k views
C++ program for checking a string for balanced ()s, {}s and []s
So here's my problem:
I'm supposed to write a c++ program that checks a string to be balanced. So far I have the code working to make sure that it has the same number of ('s and )'s (the same with ...
0
votes
2answers
107 views
Braces AROUND the WHOLE try/catch statement in java are needed? Really weird stuff
I need to resolve the package version from manifest in Android. I do it straight in the main activity, don't know if it's wrong.
I can't test if this works now, for various reasons I wouldn't be able ...
0
votes
3answers
178 views
Curly Braces in Objective-c
Note: My question is based after checking this and the answers to it.
In some bigger methods, there are pieces of code that you only want to be alive for a certain period of time. An example:
1) I ...
0
votes
1answer
192 views
sed - what is this curly brace notation called?
I just found this:
sed '/label/{n;n;s/{}/{some comment}/;}'
The intended effect is to seek label, proceed 2 lines down (n;n;) then substitute in (s) some comment.
This is an amazing capability I ...
5
votes
1answer
173 views
How generic is the {} construction syntax?
In a talk about initialization lists, I understood Stroustrup basically saying that the new construction syntax with curly braces is supposed to be a general replacement for all the previous ...
1
vote
4answers
277 views
Regex to find out a subtring which is inside curly braces in Java
I have this type of subtring
string 1
{
string 2
string 3
{
string 4
string 5
}
string 6
{
string 7
string 8
}
string 9
{
...
0
votes
5answers
164 views
Using floating curly braces to free variables early in C#
C# variables are instantiated where the type is declared (eg string s;) and freed at the closing brace of the current scope:
// Operates with Q memory
void FantasyMethod() {
var o = new ...
1
vote
1answer
606 views
Brace styles in C# in VS2012
I'd like to configure the auto formatting brace styles to my preference.
I've looked through all the option and can't quite get it how I like it.
Here is a sample of my preferred format:
if ...
2
votes
1answer
206 views
Using curly braces alone in R to create collapsing code blocks?
So, I've been using the RStudio IDE lately, and I really like it. In writing R code, I've been striving to keep it simple and easy to read. However, some of my scripts are just getting a little ...
234
votes
19answers
12k views
What's the purpose of using { … } for a single line?
I'm reading some lecture notes of my C++ lecturer and he wrote the following:
Use Indentation // OK
Never rely on operator precedence - Always use parentheses // OK
Always use a { } block ...
0
votes
0answers
64 views
Syntax Errors / Null Returns in Javascript Web App [closed]
First of all I wish to thank everyone reading this to even help me, it's a simple situation here for most of you. I'm not one to demand people spoon feed me answers or one to ask questions in various ...
2
votes
1answer
83 views
curly brace in javascript
demo1:
{"aa":111}
demo2:
{aa:111}
demo1 result:
SyntaxError: Unexpected token : (in chrome)
demo2 result:
111
how to explain these two demos?
tks
1
vote
1answer
261 views
Curly Braces not working in Eclipse
See the image, basically if I go to enter shift+[ or shift+] aka { or } in eclipse
I expect the editor to update the .java source with a { or }.
Instead it seems to be indenting...
Now I'm using a ...
1
vote
1answer
136 views
How to represent a curly brace in regex replace using javascript
I want to be able to do the following string replacement:
Input: 3^4
Output: 3^{4}
I have written the following regex expression to solve it:
...
2
votes
4answers
118 views
C# compiler expecting closing curly brace
Can anyone please point out the cause of this error in the C# code of an ASP.Net application.
The build error is expecting a closing curly brace, although I have checked for all semicolons and ...
0
votes
4answers
162 views
Regular Expression look for string and return everything between curly braces
I've been trying to use the approach suggested by another SO-User: http://stackoverflow.com/a/1820837/1324861
But without luck. Basically, I have a large JSON Object that I transformed into a string ...



