literal is a notation for representing a fixed value in source code (Wikipedia)
0
votes
1answer
21 views
type inference and string literals, how to do it?
How do I get this to compile?
Code
object Playground2 {
trait Client[S,A] {
def wrap[S,A](v: A): (S,A)
}
class TestClient extends Client[String, Int] {
override def ...
3
votes
1answer
58 views
Unexpected int/Integer behavior when number starts by 0
I can't understand why this is not printing the expected value (400300) when I put extra zeros in front of the number:
System.out.println(new Integer(0400300)); // prints 131264
...
1
vote
1answer
34 views
Remove #inst and #uuid literals in clojure
I have a UUID and java util date which get literals as #uuid and #inst, how do I specify the uuid or date without referencing the literals themselves?
clj-json does not like dealing with them and ends ...
7
votes
2answers
164 views
C++11 operator“” with double parameter
Consider:
struct str {};
str operator"" _X(long double d) {
return str();
}
This compiles fine with g++ 4.7.2 Wall std=c++11
but now if I give a double :
str operator"" _X(double d) {
...
0
votes
1answer
40 views
array adding function in object literal notation
Here is the code I am using, not quite sure how to use literal notation yet, I have to pass the currentActiveCategories to the function somehow. Not sure if this is even the preferred way to do it, ...
3
votes
2answers
142 views
F# [<Literal>] causes Invalid Program
I'm trying to match the Empty Guid using a Literal, and I can't figure out what's going on here:
let [<Literal>] EmptyGuid = System.Guid ()
let someFunction () = System.Guid.NewGuid () |> ...
0
votes
1answer
50 views
Python 3.3 invalid literal for int() with base 10 [closed]
This is my first question here on Stackoverflow. I have been learning Python for some time now, but I don't really get what is wrong about my code. Everytime I run my program, I get this error:
...
1
vote
3answers
47 views
How to iterate over a string and find out if it is available in an object literal?
var leet = {
h: 1,
e: 2,
r: 3,
o: 4,
l: 5
};
var s = "hello";
var fin = "";
for (var i in s) {
if (leet.hasOwnProperty(i)) {
fin + = leet[i];
} else {
fin ...
0
votes
3answers
52 views
How do I split two strings and make a key-value pair in javascript
var ma = "jim";
var nu = "123";
var splitit = ma.split("");
var splitit2 = nu.split("");
for (i=0; i<=splitit.length;i++) {
var bach = {splitit[i]:splitit2[i]};
}
alert(bach);
...
2
votes
2answers
58 views
Difference between 'A' and “A” literals in C [duplicate]
Am I right in saying that the difference between 'A' and "A" in C is:
'A' - Means a character 1 byte (8 bits) long containing A.
"A" - Means a string which is 2 bytes (16 bits) long which holds ...
7
votes
3answers
187 views
Difference between GCC binary literals and C++14 ones?
C++14 seems to be coming and compilers are already trying to implement the core features of this new revision. I was having a look at GCC support for these core features and noticed something about ...
-6
votes
0answers
34 views
Visual C++ 2012 multicharacter literal value assignment [closed]
Why doe VC++ compiler choose to assign multicharacter constant value in such a weird way?
int v='abcd';
000007F6DFF3DC41 C7 04 24 64 63 62 61 mov dword ptr [rsp],61626364h
...
3
votes
2answers
49 views
what exactly is the type of class literal in Java?
in the Java tutorial http://docs.oracle.com/javase/tutorial/java/nutsandbolts/datatypes.html , class literals is mentioned as a "literal type"
Finally, there's also a special kind of literal ...
1
vote
2answers
49 views
Make a lookup on an array literal in PHP
Making a lookup on an array is simple:
$array = array(0 => 'Zero', 1 => 'One', 2 => 'Two');
$text = $array[2]; // $text = 'Two'
But if I don't want the intermediate $array variable, is ...
1
vote
2answers
50 views
Why and how does the Python interpreter remember literal objects [duplicate]
I am surprised by the following result, using Python 2.7.4:
>>> id(5)
5068376
>>> id(5)
5068376
When the expression 5 is evaluated, a new object is created with the identity of ...
1
vote
1answer
21 views
How to hide asp:literal after refreshing page
I have asp:literal text line which will shown after pressed "Save" button.
But when i refresh site, the literal text won't disappear.
<asp:Literal id="Literall" Text="" runat="server"/>
...
4
votes
4answers
79 views
Assigning a string literal to a char array, how is the string literal copied onto the stack?
I understand when you do char array[] = "string", the string literal "string" gets copied from the data segment to the stack. Is the string literal copied over character by character? Or the compiler ...
0
votes
2answers
69 views
Understanding the semantics of C pointer casts when applied to literals
Is there any documentation specifying the meaning of a pointer cast applied to a literal in C?
For example:
int *my_pointer = (int *) 9
Is this compiler-dependent or part of the standard?
...
2
votes
2answers
129 views
What is the difference between literal and variables in Python? [closed]
I'm a beginner user for Python, but I get confused between literal and variables.
This is what I know about a literal: "a"+"b"
And variables: sentence="a"+"b"
0
votes
2answers
61 views
NSDictionary literals causing crash when used with setTitleTextAttributes
I am converting my xcode project to modern objective c. In my AppDelegate, previously, I have this code:
- (void)customizeAppearance
{
[[UIBarButtonItem appearance] ...
0
votes
3answers
52 views
bash resolving variables in literal value for PS1
Attention : do not offer more simple solution for that example case, it is generated only to show a problem, order is taken from real problem.
I try to change my PS1 in ".bashrc", do not want to ...
-1
votes
4answers
83 views
Javascript function Call. Escape quotes in strings [duplicate]
Alright and my query is, How do I escape quotes in Javascript? I'm trying to alert the message with my code below. I know it won't work because it contains string in double quotes within the onClick ...
0
votes
2answers
115 views
Python: Invalid Literal for Int() Base 10
I'm writing code for a project to determine the validity of credit cards and i've hit a wall, it seems like all of the things i have tried so far are not working.
This is giving me an error for the ...
3
votes
5answers
93 views
Java - When a String is not a literal but an Object?
Yet again I am revisiting Java after yet another setback in my brain (see my profile). Similar questions have been asked here, but none in the fashion I wish to present this question.
I have always ...
3
votes
6answers
125 views
When do (not) two strings with same content share the same memory?
Coming from the question will two strings with same content be stored in the same memory location?
Having the Java code
String s1="Java";
will this string be allocated in the same memory ...
19
votes
1answer
469 views
Is the literal 0xffffffff int or unsigned in C++
According to this, integer literals without type suffix are always ints. However, both gcc and clang interpret 0xffffffff (or any literal which explicitly sets the sign bit other than using the -) as ...
1
vote
0answers
67 views
Objective C syntax help - literals [duplicate]
Need some help with the following objective-c syntax:
[error.userInfo[FBErrorParsedJSONResponseKey][@"body"][@"error"][@"type"] isEqualToString:@"OAuthException"]
Whats going on here? How are ...
2
votes
1answer
51 views
Jquery animate using variable not working (literal works fine)
Edit: Solved. I just had to call .toString on newWidthO and newWidthP. I'd answer my question but I can't do it for 8 hours or so due to reputation stuff.
-=--------------------------------
I'm ...
0
votes
1answer
41 views
How to find literal ? CRLF <anytext> in Notepad++ or Gawk
I have a text file with a series of questions in it for an exam
The structure is
Question A?
potential answer 1
potential answer 2
potential answer 3
potential answer 4
potential answer 5
Question ...
-1
votes
2answers
61 views
CS0117: 'System.Web.UI.HtmlControls.HtmlAnchor' does not contain a definition for 'Text'
I received this error when trying to put a couple of C# projects live. The sites were working locally in VS 2010 but on live they threw the following error:
CS0117: ...
0
votes
1answer
37 views
Visual Basic Clipboard Manipulation
To get straight to the point. I've got 3 buttons. Each button sends a lengthy message to the clipboard where I can then paste it in another window.
The messages are currently being stored in a string ...
-1
votes
3answers
99 views
JavaScript - use apostrophes or quotation marks? [duplicate]
For string literals, are any differences between using apostrophes or using quotes? I'm thinking in regard to performance, functionality, conventions, etc.
To clarify:
'Hello!'
vs.
"Hello!"
...
0
votes
1answer
31 views
How do I define a System::Decimal literal for use in an attribute, in C++/CLI?
As far as I can tell, there is no literal suffix for defining a compile-time constant of type System::Decimal (compare to the M suffix in C# -- i.e. Decimal d = 100.5M). Furthermore, the following ...
7
votes
1answer
1k views
C/C++: Inherent ambiguity of “\xNNN” format in literal strings
Consider these two strings:
wchar_t* x = L"xy\x588xla";
wchar_t* y = L"xy\x588bla";
Upon reading this you would expect that both string literals are the same except one character - an 'x' instead ...
0
votes
4answers
76 views
Property names in JavaScript
I have a question that has been really bugging me for quite a while and I cannot seem to find any resources that cover the topic. How can property names in JavaScript be string literals or numeric ...
5
votes
2answers
156 views
Specify a Java class literal programmatically (without hard coding it)? reflection?
Questions:
In the line
Object o = myC.getConstructor(short.class).newInstance(myC.cast(pPrim));
Is there a way avoid hard coding "short.class" and instead get a literal from pPrim?
I got the idea ...
0
votes
1answer
21 views
literal array in SQL statement?
I'm sure there must be a really easy way to do this, but I can't figure out how, and a search hasn't yielded a solution. Here's what I want to do, but it's illegal:
update test_table set q_name = ...
3
votes
1answer
61 views
Ada Numeric Literals and Underline
This is from the online Ada reference manual:
http://www.adaic.org/resources/add_content/standards/05rm/RM.pdf (section 2.3)
A decimal_literal is a numeric_literal in the conventional decimal ...
0
votes
1answer
60 views
Using a literal to display results from query
I'm trying to display multiple rows from a query into a literal in asp.net c#. Here is my code for doing so:
protected void Page_Load(object sender, EventArgs e)
{
SqlConnection ...
1
vote
2answers
41 views
Make all functions strict mode literal object?
Let's say we have this script.
var apple = {
type: "macintosh",
color: "red",
getInfo: function () {
return this.color + ' ' + this.type + ' apple';
}
///more functions ...
5
votes
2answers
122 views
A way of writing large numeral literals in C#
I have a method like this:
Prefix GetPrefix(decimal value)
{
if(value > 11000000000000000000)
return Prefix.CosmicBig;
if(value > 1000000000000000)
return ...
0
votes
5answers
76 views
Getting the character length of a string literal
How would you get the length (Give or take the null-terminator) of a string literal without using the cstdlib of something like this:
char* foo = "foobar";
cout << sizeof(foo) << endl; ...
-1
votes
1answer
166 views
(python) working with a hex literal trying to convert to string, or int, or anything
I'm working on an assignment in which we have to simulate a kaminski attack on a dns server we create. I'm currently trying to generate the falsified dns reponse packet payload. Using dnslib I'm ...
0
votes
1answer
133 views
Passing variable to javascript block from asp.net
I have a grid view in which one header template "select all" is there which on checked will select all the check box in grid view rows.
I have a pagesize dropdown which on selecting will open that ...
0
votes
2answers
131 views
Want to access literal value into javascript
I have got a literal control on page (with some data on it). i want to access it in javascript and want to put some text on it. please tell me how can i access literal control in JavaScript. I was ...
0
votes
1answer
42 views
I get an error, but my program works and behaves as expected. Just an unwanted error message at end
f = open("arvud.txt", "r")
arv = f.readline()
arv = arv.strip()
while arv != " ":
if int(arv)%2 > 0:
print("Arv " + str(arv) + " on paaritu arv.")
else:
print("Arv " + ...
1
vote
0answers
70 views
Can you convert literal string to an interpreted string in PHP?
I'm using Kohana to create an e-mail view which is entirely plain text as a part of a MIME Multipart/alternative e-mail. Since plaintext does not really allow for formatting I want to be able to use ...
1
vote
2answers
86 views
Can you put a Literal as part of a hyperlink?
So my codebehind looks like this and is working correctly as text. But I need to add the value to a hyperlink
If pt.SelectedValue = "1" Then
litTier.Text = "/link.aspx"
Else
litTier.Text = ...
0
votes
2answers
121 views
C++ misuse of template or problems of compilers string literal comparison with template
When I am reading "C++ Primer" (4th Edition) Chapter 16.1, there is a simple template demo:
// implement strcmp-like generic compare function
// returns 0 if the values are equal, 1 if v1 is larger, ...
9
votes
7answers
200 views
Why is the default type of Java integer literals int instead of long? [closed]
I'm confused why Java integer literals default to int instead of long. This seems to cause unnecessary confusion.
First, it requires the programmer to adopt a special syntax (append "L" to literals) ...






