The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
10 views

Missing $ inserted - did I make something wrong? [migrated]

Im writing a paper using Latex and I get repeatedly this "! Missing $ inserted. $ l.92 ?" error. Its only in two passages and I don't see any obvious mistake I made. The code is: ...
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 ...
3
votes
3answers
42 views

Inline braces block within method and loop [duplicate]

It's kind of hard to exactly search for this. I've seen this in a few places and I've even tried it in code to see how it works but just so that I know exactly how they can be used and to make sure I ...
0
votes
1answer
60 views

Visual C++ Express Brace-Completion

I really like the Visual C++ Express Version for efficient C++-Coding. I'm just missing the feature of auto brace-completion, for example when I type { and press enter ist should automatically add }. ...
0
votes
1answer
25 views

Regex match token with argument

A token can be like this {num} or {num:2} (2 being an arg) I would like to achieve matching like this: // no args [0] = num // args (anything after the colon and before the closing brace as one ...
1
vote
2answers
32 views

Detect and match function opening and end brace in source code

I would like to know if there are already good algorithms to detect function declaration, function content, its opening brace and closing one. For development, debug and testing for bugs, it could be ...
0
votes
3answers
46 views

include/import separate AS3 file

I am trying to just include a .as file in my flash application. I'm sure it's not that difficult and I'm just getting something slightly wrong, but at the top of my code I always put: include {"Le ...
1
vote
2answers
58 views

Eclipse Formatting. Remove new line before opening brace for block

Is there a way to prevent Eclipse from adding a new line before block opening brace ? Eclipse format following code p = new JPanel(new GridLayout(0, 1)); { p.add(login); p.add(password); } ...
-1
votes
2answers
28 views

which brace style is better? [closed]

I'm a little confused which brace style is better? This one? if ( a > b) { c = d; } or this one? if ( a > b) { c = d; } I'm using the first one because I think ...
0
votes
3answers
65 views

If Statements And Braces.. Different Result With/Without

Alright, so I'm in the process of learning C++, and I've hit a strange effect while working with one of the tutorials, and I don't quite get while it's happening.. For the tutorial (copied from the ...
0
votes
0answers
40 views

Create a php PCRE pattern string

I have a check condition: Find in string all entries, witch are in braces. I mean, the code like text {code} text but the code like text \{code\} text must not be parsed. In this code text ...
1
vote
1answer
202 views

TCL ERROR: missing close-brace: possible unbalanced brace in comment

I am getting this TCL error ERROR: missing close-brace: possible unbalanced brace in comment and have no idea where the unbalanced brace may be. Could you please suggest some way of finding it? ...
0
votes
4answers
171 views

Netbeans code format braces in PHP single line statements

Intro Im developing PHP in NetBeans IDE 7.2 (Build 201207171143) and I love the formatting to clean up my code in my custom format. At the moment I work in a group with colleagues. Some of my ...
1
vote
3answers
693 views

List of all unicode's open/close brackets?

What is a list of every unicode bracket-like characters (including, for example: {}[]()<>)? What is a good way to search for unicode characters?
-1
votes
1answer
97 views

What do empty braces mean in Python? [closed]

Please have a look at this snippet: import xlrd,spss from xlrd import open_workbook wb=open_workbook('C:/temp/testbook.xls') sheetnames=[] for s in wb.sheets(): sheetnames.append(s.name) Why ...
0
votes
3answers
265 views

AutoHotKey: “{Enter” Hotstring

As I've started using AutoHotKey daily, I thought it'd be a good idea to implement it in my coding. I'd like it to create a structure like this: { (Tab) } when { followed by an Enter are ...
5
votes
4answers
92 views

PHP braces and conditional

What does this line mean? if ( ${fun("str1")} (fun("str2"), ${fun("str3")}) ) Evaluate function returning_value_for_str1_of_fun()_name with the parameters return value for str2 and variable with ...
-3
votes
1answer
200 views

How do I fix “missing braces around initializer”? [closed]

I am working on a game and I ran my code and got the error "missing braces around initializer," and the error, "(near initialization for 'job'." I don't know what this means, so how do I fix it? Here ...
1
vote
1answer
192 views

jinja url named routes escaped curly brace literal

I'm outputting the python named routes into a Urls JavaScript object like this: var Urls = { ajaxCompanyList: "{%url data-company-list %}", ajaxCompanyDetail: "{%url data-company-detail ...
0
votes
1answer
455 views

Xcode Matching Pairs of Braces, Parentheses, and Brackets

If you are a notepad++ user you will understand what I want Xcode to do for me , it's very simple I want when i place the cursor before or after a Braces, Parentheses, and Brackets , it highlight for ...
0
votes
6answers
96 views

Javascript count keys in braces of function

I call a function like so: update_insert('information',{ element_id: 1, type: 'menu', info: 'Hi how are ya?', new_window: '' }); The function is: function ...
0
votes
0answers
196 views

Parenthesis highlighting in Eclipse like in Pharo

I am looking for Eclipse plugin to highlight braces (parenthesis) with different color. I've met such braces coloring in Pharo Smalltalk Smalltalk Syntax Highlighting example There is a plugin ...
2
votes
5answers
4k views

C++ struct array initialization

This is ok: int vec_1[3] = {1,2,3}; so what's wrong with struct arrays{ int x[3]; int y[3]; int z[3]; }; arrays vec_2; vec_2.x = {1,2,3}; that gives error: cannot convert ...
2
votes
2answers
75 views

What is the difference between [myString length] and myString.length in objective-c?

I'm currently learning objective-c. What exactly do the square braces around things signify and is there any difference between using that and using a period (I'm from a .NET world so this would be ...
0
votes
2answers
518 views

Reached End of file while parsing

I keep getting this message when I try to compile: Reached End of file while parsing Anyone know why? The only thing that I have figured out is that it has something to do with my curly braces. I have ...
0
votes
1answer
140 views

Tcl lreplace can't replace braces?

What should do this code sample? set l { A B C D } lreplace $l 1 2 \[ \] It returns {A {[} \] D}, however I want to have {A [ ] D}. What am I doing wrong?
5
votes
5answers
6k views

Curly braces in Python in 2012? [closed]

Just starting to figure Python out. I've read this question and its responses: Is it true that I can't use curly braces in Python? and I still can't fathom how curly braces work, especially ...
0
votes
2answers
134 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 ...
39
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 ...
3
votes
3answers
833 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 ...
0
votes
1answer
253 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: ...
-3
votes
2answers
334 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 ...
1
vote
3answers
76 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
107 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
votes
2answers
62 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
376 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 ...
6
votes
7answers
277 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) ...
4
votes
3answers
2k 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 ...
6
votes
3answers
448 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 ...
2
votes
2answers
3k 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 ...
5
votes
3answers
2k views

Why is this Java code in curly braces ({}) outside of a method? [duplicate]

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 ...
1
vote
3answers
783 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); // ...
0
votes
1answer
97 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.)
59
votes
5answers
5k views

What is the formal difference in Scala between braces and parentheses, and when should they be used?

What is 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 flexible and I ...
2
votes
0answers
1k 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 ...
3
votes
1answer
605 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 ...
0
votes
4answers
1k 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
2answers
1k views

Opening Curly Bracket (Brace) position on code [closed]

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) { // <----- ... } ...
6
votes
3answers
2k 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 ...
0
votes
1answer
136 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 ...

1 2