Tagged Questions

literal is a notation for representing a fixed value in source code (Wikipedia)

learn more… | top users | synonyms (1)

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: ...
21
votes
5answers
6k views

Why does instanceof return false for some literals?

"foo" instanceof String //=> false "foo" instanceof Object //=> false true instanceof Boolean //=> false true instanceof Object //=> false false instanceof Boolean //=> false false ...
20
votes
4answers
3k views

Literal hashes in c#?

I've been doing c# for a long time, and have never come across an easy way to just new up a hash. I've recently become acquainted with the ruby syntax of hashes and wonder, does anyone know of a ...
19
votes
9answers
9k views

Why can't Python's raw string literals end with a single backslash?

Technically, any odd number of backslashes, as described in the docs. >>> r'\' File "<stdin>", line 1 r'\' ^ SyntaxError: EOL while scanning string literal >>> ...
15
votes
5answers
4k views

How do I write a short literal in C++?

Very basic question.. how do I write a short literal in C++? I know the following: 2 is an int 2L is a long 2LL is a long long 2.0f is a float 2.0 is a double '\2' is a char. But how would I ...
12
votes
4answers
2k views

How do you specify a byte literal in Java?

suppose I have a method void f(byte b); how can I call it with a numeric argument without casting: f(0); gives an error. any ideas
12
votes
3answers
542 views

C++ multicharacter literal

I didn't know that C and C++ allow multicharacter literal: not 'c' (of type int in C and char in C++), but 'tralivali' (of type int!) enum { ActionLeft = 'left', ActionRight = 'right', ...
11
votes
5answers
1k views

In C#, can I escape a double quote in a literal string?

In a literal string (@"foo") in C#, backslashes aren't treated as escapes, so doing \" to get a double quote doesn't work. Is there any way to get a double quote in a literal string? (This ...
10
votes
3answers
210 views

Type of integer literals not int by default?

I just answered this question, which asked why iterating until 10 billion in a for loop takes so much longer (the OP actually aborted it after 10 mins) than iterating until 1 billion: for (i = 0; i ...
10
votes
3answers
247 views

Why is an empty wchar_t literal allowed?

Look at the following code: int main(int argc, char* argv[]) { // This works: (Disable Lang Ext = *Yes* (/Za)) wchar_t wc0 = L'\0'; wchar_t wc_ = L''; assert(wc0 == wc_); // This ...
10
votes
8answers
442 views

Possible to convert list of #defines into strings (C++)

Suppose I have a list of #defines in a header file for an external library. These #defines represent error codes returned from functions. I want to write a conversion function that can take as an ...
9
votes
2answers
345 views

Is -5 an integer literal?

Is -5 an integer literal? Or is 5 a literal, and -5 is an expression with unary minus taking a literal as an argument? The question arose when I was wondering how to hardcode smallest signed integer ...
9
votes
2answers
204 views

Creating a list with >255 elements

Ok, so I'm writing some python code (I don't write python much, I'm more used to java and C). Anyway, so I have collection of integer literals I need to store. (Ideally >10,000 of them, currently ...
9
votes
7answers
537 views

In C# are the terms “Primitive” and “Literal” interchangeable?

A discussion earlier today led me to question whether or not my understanding of primtives and literals is correct. My understanding is that a literal type is specifically a type which can have a ...
8
votes
2answers
241 views

Is Array(5) equivalent to var a = []; a.length = 5; in JS?

I see four five options to initialize an array to a specific length in JS, (the last one is a stretch, I know): var a = []; a.length = 5; var a = Array(5); var a = []; a[4] = undefined; var a = ...
8
votes
5answers
776 views

Best way to convert string to array of object in javascript?

I want to convert below string to an array in javascript. {a:12, b:c, foo:bar} How do I convert this string into array of objects? Any cool idea?
8
votes
3answers
295 views

What's wrong with JavaScript's regular expression notation?

I was reading Douglas Crockford's web page, JavaScript: The World's Most Misunderstood Programming Language, and I couldn't help but notice that, under Design Errors, he mentions "the notation for ...
8
votes
4answers
368 views

What is the 'd' in the literal 12d called?

I feel like I should know the answer to this, but I don't. What is the type character on a numeric literal called? double myDouble = 12d; float myFloat = 10f; I wanted to find a complete list ...
8
votes
3answers
1k views

Java equivalent of C#'s verbatim strings with @

Quick question. Is there an equivalent of @ as applied to strings in Java: For example I can do @"c:\afolder\afile" in C# and have it ignore the escape characters when processing instead of having to ...
8
votes
3answers
1k views

Python regex - r prefix

Can anyone explain why example 1 below works, when the r prefix is not used? I thought the r prefix must be used whenever escape sequences are used? Example 2 and example 3 demonstrates this.. # ...
8
votes
5answers
432 views

In JavaScript, why is [ ] preferred over new Array();?

I remember reading somewhere (I think it was in one of Crockford's papers) that using an array literal [] is better than using the new Array(); notation. But I can't really remember any advantages of ...
8
votes
2answers
724 views

Japanese COBOL Code: rules for G literals and identifiers?

We are processing IBMEnterprise Japanese COBOL source code. The rules that describe exactly what is allowed in G type literals, and what are allowed for identifiers are unclear. The IBM manual ...
8
votes
3answers
8k views

How does one escape characters in Delphi string

Delphi strings use single quotes, for example 'a valid string'. How does one specify the ' character within a literal string? How would one refer to the null byte (Unicode code point U+0000)?
7
votes
7answers
218 views

Should we generally use float literals for floats instead of the simpler double literals?

In C++ (or maybe only our compilers VC8 and VC10) 3.14 is a double literal and 3.14f is a float literal. Now I have a colleague that stated: We should use float-literals for floating point ...
7
votes
3answers
1k views

C++ vector literals, or something like them

I'm writing some code against a C++ API that takes vectors of vectors of vectors, and it's getting tedious to write code like the following all over the place: vector<string> vs1; ...
6
votes
3answers
192 views

Is this legal C/C++? `int* p = (int[]) {1,2,3} ;`

This answer of mine generated some comments claiming that the following construct is not legal C/C++: void f (int* a) ; f ((int[]){1,2,3,4,0}) ; (see this ideone link for a full program). But we ...
6
votes
3answers
139 views

Use XML Literals in C#?

Is it possible to add literal XML data within a C# code file? I'm currently using a multiline string literal but it gets messy as you can see. Any better way of doing this? string XML = @"<?xml ...
6
votes
2answers
102 views

Why is arbitrary precision in double literals allowed in Java?

I just learned from Peter Lawreys post that this is valid expression, and evaluates to true. 333333333333333.33d == 333333333333333.3d My question is, why is it allowed to have double literals ...
6
votes
3answers
216 views

Scala Functional Literals with Implicits

Forgive me if this has already been asked elsewhere. I have a Scala syntax question involving function-values and implicit parameters. I'm comfortable using implicits with Scala's currying ...
6
votes
4answers
379 views

When did C++ compilers start considering more than two hex digits in string literal character escapes?

I've got a (generated) literal string in C++ that may contain characters that need to be escaped using the \x notation. For example: char foo[] = "\xABEcho"; However, g++ (version 4.1.2 if it ...
6
votes
1answer
1k views

Literal notation for Dictionary in C#?

I currently have a WebSocket between JavaScript and a server programmed in C#. In JavaScript, I can pass data easily using an associative array: var data = {'test': 'val', 'test2': ...
6
votes
6answers
304 views

Are string literals const?

Both GCC and Clang do not complain if I assign a string literal to a char*, even when using lots of pedantic options (-Wall -W -pedantic -std=c99): char *foo = "bar"; while they (of course) do ...
6
votes
8answers
1k views

Is there a best practice for writing maps literal style in Java?

In short, if you want to write a map of e.g. constants in Java, which in e.g. Python and Javascript you would write as a literal, T<String,String> CONSTANTS = { "CONSTANT_NAME_0": ...
6
votes
5answers
410 views

The dot after the integer number value in JavaScript?

In JavaScript it is valid to end an integer numeric literal with a dot, like so... x = 5.; What's the point of having this notation? Is there any reason to put the dot at the end, and if not, why ...
6
votes
9answers
3k views

Should I use _T or _TEXT on C++ string literals?

For example: // This will become either SomeMethodA or SomeMethodW, // depending on whether _UNICODE is defined. SomeMethod( _T( "My String Literal" ) ); // Becomes either AnotherMethodA or ...
6
votes
7answers
2k views

Scope of (string) literals

I always try to avoid to return string literals, because I fear they aren't defined outside of the function. But I'm not sure if this is the case. Let's take, for example, this function: const char ...
6
votes
5answers
1k views

Strange cross-threading UI errors

I'm writing a WinForms app which has two modes: console or GUI. Three projects within the same solution, one for the console app, one for the UI forms and the third to hold the logic that the two ...
5
votes
2answers
72 views

I need a Javascript literal syntax converter/deobfuscation tools

I have searched Google for a converter but I did not find anything. Is there any tools available or I must make one to decode my obfuscated JavaScript code ? I presume there is such a tool but I'm ...
5
votes
1answer
101 views

Why escaping 'w' ('\w') character reverses memory representation of a int variable?

Consider the following code sample: int i1 = 'w\"'; int i2 = '\w\"'; int i3 = 'w"'; int i4 = 'w\"'; Note: MSVS SP1 2005 C++ compiler, just default debug compilation/linkage settings. x86 machine. ...
5
votes
2answers
188 views

In Haskell can I make numeric literals not polymorphic by default?

This is probably not possible, since I already checked the list of all GHC extensions and this is not in there, but I thought I'd ask just in case. Is there any way to make it so that 2 has type Int ...
5
votes
1answer
119 views

Why can't string literals be used in bash regular expression tests?

Why does the following bash script only print out variable worked? #! /bin/bash foo=baaz regex='ba{2}z' if [[ $foo =~ 'ba{2}z' ]]; then echo "literal worked" fi if [[ $foo =~ $regex ]]; then ...
5
votes
3answers
115 views

Why are different delimiters used in percent notation?

I have seen different people use different types of braces/brackets for this. I tried them out in script console, and they all work. Why do they all work and does it matter which is used? %w|one two| ...
5
votes
2answers
806 views

JavaScript: JSLint throws "Read Only

My code: note: the Slider Object is declared but omitted in the snippet below for better readability "use strict"; /*global arrayContainer, SliderInstance, DomObjects */ arrayContainer = new ...
5
votes
1answer
298 views

MySQL unicode literals

I want to insert a record into MySQL that has a non-ASCII Unicode character, but I'm on a terminal that doesn't let me easily type non-ASCII characters. How do I escape a Unicode literal in MySQL's ...
5
votes
4answers
328 views

How exactly does the JavaScript expression [1 [{}]] parse?

Can you explain how the JavaScript expression: [1 [{}]] parses/evaluates? In Firefox, Chrome, Konqueror, and rhino, it seems to create an array with a single element, undefined. However, I don't ...
5
votes
5answers
999 views

Initializing a value through a Session variable

I need to Initialize a value in a Javascript by using a c# literal that makes reference to a Session Variable. I am using the following code <script type="text/javascript" language="javascript" ...
5
votes
4answers
593 views

How do I include extremely long literals in C++ source?

I've got a bit of a problem. Essentially, I need to store a large list of whitelisted entries inside my program, and I'd like to include such a list directly -- I don't want to have to distribute ...
5
votes
5answers
297 views

What does it mean when numbers end with U

As in this code: int nx = (int)((rev3[gx]) / 193U); Whats with the U in the end of 193 ?
5
votes
4answers
2k views

C# Decimal Data Type

In order to work with decimal data types, I have to do this with variable initialization: decimal aValue = 50.0M; What does the M part stand for?
5
votes
4answers
7k views

escaping question mark in regex javascript

simple questions I think I am trying to search for the occurrence of a string in another string using regex in javascript like so: var content ="Hi, I like your Apartment. Could we schedule a ...

1 2 3 4 5