Tagged Questions

In computer science, the syntax of a programming language is the set of rules that define the combinations of symbols that are considered to be correctly structured programs in that language.

learn more… | top users | synonyms

337
votes
7answers
52k views

Can you explain why ++[[]][+[]]+[+[]] = 10

++[[]][+[]]+[+[]] is valid and return "10" in JavaScript (more example here: http://sla.ckers.org/forum/read.php?24,33349,33405). Can you explain why? I don't understand what's happening here.
307
votes
5answers
46k views

What does “use strict” do in javascript, and what is the reasoning behind it?

Recently I ran some of my javascript code through Crockford's JSLint, and it gave the following error: Problem at line 1 character 1: Missing "use strict" statement. Doing some searching, I ...
143
votes
14answers
5k views

int a[] = {1,2,}; Weird comma allowed. Any particular reason?

Maybe I am not from this planet, but it would seem to me that the following should be a syntax error: int a[] = {1,2,}; //extra comma in the end But it's not. I was surprised when this code ...
143
votes
11answers
50k views

How can I merge two Python dictionaries as a single expression?

I have two Python dictionaries, and I want to write a single expression that returns these two dictionaries, merged. The update() method would be what I need, if it returned its result instead of ...
89
votes
5answers
28k views

How do you express binary literals in Python?

How do you express an integer as a binary number with Python literals? I was easily able to find the answer for hex: >>> 0x12AF 4783 >>> 0x100 256 and, octal: ...
80
votes
8answers
3k views

Any idea why I need to cast an integer literal to (int) here?

In the following example int i = -128; Integer i2 = (Integer) i; // compiles Integer i3 = (Integer) -128; /*** Doesn't compile ***/ Integer i4 = (Integer) (int) -128; // compiles Integer i4 = -128; ...
79
votes
24answers
27k views

Does Java need tuples?

This question got me re-thinking about something that always bothered me: Does Java need tuples? Do you feel the lack of them in your day-to-day work? Do you think tuples would simplify otherwise ...
78
votes
8answers
6k views

What does ** and * do for python parameters?

In the following method, what does the * and ** do for param2? I'm new to Python...I assume it's a reference or pointer. Answers? def foo(param1, *param2): def bar(param1, **param2):
69
votes
6answers
9k views

Haskell: difference between . (dot) and $ (dollar sign)

Can anybody explain what the difference is in Haskell between the dot (.), and the dollar sign ($). As I understand it, they are both syntactic sugar for not needing to use parentheses.
66
votes
4answers
2k views

Weird “[]” after Java method signature

I looked at some Java code today, and I found some weird syntax: public class Sample { public int get()[] { return new int[]{1, 2, 3}; } } I thought that can't compile and wanted to fix ...
66
votes
3answers
47k views

How do you pass a function as a parameter in C?

I want to create a function that performs a function passed by parameter on a set of data. How do you pass a function as a parameter in C?
63
votes
6answers
36k views

How do I convert a float to an int in Javascript?

I'd like to convert a float to an int in Javascript. Actually, I'd like to know how to do BOTH of the standard convertions: by truncating and by rounding. And efficiently, not via converting to a ...
61
votes
6answers
4k views

What's the false operator in C# good for?

There are two weird operators in C#: the true operator the false operator If I understand this right these operators can be used in types which I want to use instead of a boolean expression and ...
60
votes
92answers
11k views

What is your (least) favorite syntax gotcha? [closed]

You know the ones that make you go WTH and are easily spotted by a coworker just passing by? Please keep it one gotcha per answer to simplify voting.
59
votes
7answers
2k views

Why does C# allow {} code blocks without a preceding statement?

Why does C# allow code blocks without a preceding statement (e.g. if, else, for, while)? void Main() { { // any sense in this? Console.Write("foo"); } }
57
votes
6answers
28k views

LaTeX package to do syntax highlighting of code in various languages

I am looking for a LaTeX package that does syntax highlighting on code. For example, right now I use the verbatim block to write code: \begin{verbatim} <html> <head> ...
52
votes
4answers
6k views

C#: Is there a difference between return myVar vs. return (myVar)?

I was looking at some example C# code, and noticed that one example wrapped the return in ()'s. I've always just done: return myRV; Is there a difference doing: return (myRV);
52
votes
17answers
2k views

Should C# introduce a syntactic short-hand for IEnumerable<T>? [closed]

Just as C# 2 introduced T? as a short-hand for Nullable<T>, shouldn't C# consider introducing a short-hand for even the more popular IEnumerable<T>? Like T*? Wouldn't this help make ...
52
votes
5answers
11k views

Can someone explain __all__ in Python?

I have been using Python more and more, and I keep seeing the variable __all__ set in different __init__.py files. Can someone explain what this does?
50
votes
3answers
5k views

Use-case of `oneway void` in Objective-C?

I found a strange keyword in NSObject.h - (oneway void)release; I searched the web, and learned it relates to asynchronous message passing, which looks similar with Erlang's message passing. It ...
50
votes
6answers
53k views

How can I do a line break (line continuation) in Python?

I have a long line of code that I want to break up among multiple lines. What do I use and what is the syntax? For example, adding a bunch of strings, e = 'a' + 'b' + 'c' + 'd' and have it like ...
48
votes
9answers
12k views

C# keyword usage virtual+override vs. new

What is the difference between declaring a method in a base type "virtual" and then overriding it in a child type using the "override" keyword as opposed to simply using the "new" keyword when ...
45
votes
2answers
7k views

Does Razor syntax provide a compelling advantage in UI markup?

I notice Scott Guthrie is starting to mention Razor a fair bit on his blog but I'm just not that sure that it's a good fit for my style. Granted it's a fairly unfamiliar style for someone who's ...
43
votes
3answers
3k views

Explain JavaScript's encapsulated anonymous function syntax

Summary Can you explain the reasoning behind the syntax for encapsulated anonymous functions in JavaScript? Why does this work: (function(){})(); but this doesn't: function(){}();? What I know In ...
43
votes
15answers
51k views

Comment out a python code block

Is there any mechanism to comment out large blocks of Python code? Right now the only ways I can see of commenting out code are to either start every line with a #, or to enclose the code in """ ...
43
votes
7answers
8k views

What do parentheses surrounding a JavaScript object/function/class declaration mean?

I'm new to both JavaScript and YUI. In YUI library examples, you can find many uses of this construct: (function() { var Dom = YAHOO.util.Dom, Event = YAHOO.util.Event, layout = null, ...
40
votes
5answers
2k views

Why are C# 3.0 object initializer constructor parentheses optional?

It seems that the C# 3.0 object initializer syntax allows one to exclude the open/close pair of parentheses in the constructor when there is a parameterless constructor existing. Example: var x = new ...
40
votes
8answers
58k views

How do you create a static class in C++?

How do you create a static class in C++? I should be able to do something like: cout << "bit 5 is " << BitParser::getBitAt(buffer, 5) << endl; Assuming I created the BitParser ...
39
votes
4answers
2k views

“int main (vooid)”? How does that work?

I recently had to type in a small C test program and, in the process, I made a spelling mistake in the main function by accidentally using vooid instead of void. And yet it still worked. Reducing it ...
39
votes
4answers
2k views

ASP.NET “special” tags

What is the official name for the "special" ASP.NET tags like this: <%# %> <%= %> <%@ %> <%$ %> I can't seem to figure out the conceptual or well known name for these, so ...
39
votes
11answers
6k views

Syntax highlighting code with Javascript

What Javascript libraries can you recommend for syntax highlighting <code> blocks in HTML? (One suggestion per answer please).
38
votes
13answers
22k views

Is it possible to insert multiple rows at a time in an SQLite database?

In MySQL you can insert multiple rows like this: INSERT INTO 'tablename' ('column1', 'column2') VALUES ('data1', 'data2'), ('data1', 'data2'), ('data1', 'data2'), ('data1', 'data2'); ...
38
votes
12answers
15k views

Why avoid increment (“++”) and decrement (“--”) operators in JavaScript?

I'm a big fan of Douglas Crockford's writing on JavaScript, particularly his book JavaScript: The Good Parts. It's made me a better JavaScript programmer and a better programmer in general. One of his ...
38
votes
8answers
14k views

What does “static” mean in a C program?

I've seen the word static used in different places in C code; is this like a static function/class in C# (where the implementation is shared across objects)?
35
votes
4answers
812 views

javascript function leading bang ! syntax

I've been seeing this syntax on a few libraries now and I'm wondering what the benefit is. (note i'm well aware of closures and what the code is doing, I'm only concerned about the syntactical ...
35
votes
4answers
20k views

Method Syntax in Objective C

Can someone explain this method declaration syntax for me? In this function, the number of rows of a UIPickerView (slot machine UI on the iPhone) is being returned. From my understanding, the ...
33
votes
7answers
3k views

What is the difference between semicolons in JavaScript and in Python?

Python and JavaScript both allow developers to use or to omit semicolons. However, I've often seen it suggested (in books and blogs) that I should not use semicolons in Python, while I should always ...
33
votes
5answers
4k views

Python: Once and for all. What does the Star operator mean in Python? [closed]

Possible Duplicate: What does *args and **kwargs mean? What does the * operator mean in Python, such as in code like zip(*x) or f(**k)? How does it work internally in the interpretor? ...
33
votes
14answers
56k views

How do you printf an unsigned long long int?

#include <stdio.h>int main() { unsigned long long int num = 285212672; //FYI: fits in 29 bits int normalInt = 5; printf("My number is %d bytes wide and its value is %ul. A normal number ...
32
votes
5answers
1k views

Why is the dereference operator (*) also used to declare a pointer?

I'm not sure if this is a proper programming question, but it's something that has always bothered me, and I wonder if I'm the only one. When initially learning C++, I understood the concept of ...
32
votes
13answers
3k views

C++ — return x,y; What is the point?

I have been programming in C and C++ for a few years and now I'm just now taking a college course in it and our book had a function like this for an example: int foo(){ int x=0; int y=20; ...
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 ...
31
votes
2answers
891 views

My java code has an obvious error. Why does it compile and run?

public class HelloWorld { public static void main (String args[]){ System.out.println ("Hello "); http://www.google.com System.out.println ("World!"); } } The above ...
31
votes
9answers
1k views

Is there an “opposite” to the null coalescing operator? (…in any language?)

null coalescing translates roughly to return x, unless it is null, in which case return y I often need return null if x is null, otherwise return x.y I can use return x == null ? null : x.y; Not ...
31
votes
2answers
11k views

How do I check syntax in bash without running the script?

Is it possible to check a bash script syntax without executing it? Using Perl, I can run perl -c 'script name', is there any equivalent command for bash scripts? Thanks.
31
votes
20answers
1k views

How do you make wrong code look wrong? What patterns do you use to avoid semantic errors?

Ever since I first made the mistake of doing an assignment in an if I've always written my ifs like this: if (CONST == variable) { to avoid the common (at least for me) mistake of doing this: if ...
30
votes
4answers
3k views

How does this JavaScript/JQuery Syntax work: (function( window, undefined ) { })(window)?

Have you ever taken a look under the hood at the JQuery 1.4 source code and noticed how it's encapsulated in the following way: (function( window, undefined ) { //All the JQuery code here ... ...
30
votes
1answer
3k views

JavaScript: immediate function invocation syntax

There is a JSLint option, one of The Good Parts in fact, that "[requires] parens around immediate invocations," meaning that the construction (function () { // ... })(); would instead need to ...
30
votes
7answers
13k views

Automatic counter in Ruby for each?

I know you Ruby people will laugh at my bad Ruby code: i=0 for blah in blahs puts i.to_s + " " + blah i+=1 end I want to use a for-each and a counter... is there a better way to do it? ...
30
votes
4answers
22k views

How do I modify a MySQL column to allow NULL?

MySQL 5.0.45 What is the syntax to alter a table to allow a column to be null, alternately what's wrong with this: ALTER mytable MODIFY mycolumn varchar(255) null; I interpreted the manual as ...

1 2 3 4 5 81