4
votes
5answers
353 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 log …
2
votes
8answers
254 views
How does C Handle Integer Literals with Leading Zeros, and What About atoi?
When you create an integer with leading zeros, how does c handle it? Is it different for different versions of C?
In my case, they just seem to be dropped (but maybe that is what …
1
vote
9answers
242 views
What exactly is the danger of using magic debug values (such as 0xDEADBEEF) as literals?
It goes without saying that using hard-coded, hex literal pointers is a disaster:
int *i = 0xDEADBEEF;
// god knows if that location is available
However, what exactly is the da …
0
votes
2answers
54 views
C# Number Literals
With this method declaration (no overloads):
void Method(double d)
{
// do something with d
}
Is there a (performance) difference at runtime between
void Main()
{
Method …
0
votes
2answers
68 views
Javascript asynchronous request NOT working.
This code only works when async is set to false, why?
var contact =
{
XMLHttp : null,
XMLDoc : null,
TXTDoc : null,
getData : function(dataSource)
{
contact.XMLHttp = new …
0
votes
4answers
81 views
Java Regexs: unexpected char: ‘(’
I am using processing 1.0.6, which runs on java 1.6. I have the following code:
Pattern pattern = Pattern.compile("func\((.*),(\-?[0-9\.]*),(\-?[0-9\.]*),(\-?[0-9\.]*)\)");
but …
0
votes
3answers
103 views
How do I type literal binary in VB.NET?
How do you type binary literals in VB.NET?
&HFF // literal Hex -- OK
&b11111111 // literal Binary -- how do I do this?
2
votes
10answers
270 views
Why is String the only class for which literals exist in Java?
Why is java.lang.String the only class for which two ways of creation exist:
1) With normal way with "new" keyword.
String s = new String("abc");
2) With String literal (which …
0
votes
1answer
30 views
How can I force a literal or div to only be so wide
I have users enter info into a textarea that's been set to runat-"server" and that is 600px wide on 1 page. When they click a button the contents are supposed to show on the second …
4
votes
3answers
648 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 //=& …
2
votes
5answers
2k views
How to use wide string literals in c++ without putting L in front of each one
You'll have to forgive my ignorance, but I'm not used to using wide character sets in c++, but is there a way that I can use wide string literals in c++ without putting an L in fro …
2
votes
4answers
387 views
C# Decimal Data Type
Good Day,
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?
coson
2
votes
2answers
106 views
Are long-suffix and unsigned-suffix needed when declaring long literals in C++?
I have some ancient memories of writing C code like:
long value = 0;
in the bad old Win16 days and ending up with value being only half-initialized: i.e. the lower 16 bits were …
1
vote
1answer
81 views
What is the technical name of the syntactic feature “long foo = 12L;” style casting of harded-coded values in Java?
Today, I was trying to cast a hard-coded value into a short and S did not work. So, I went to search for it, but I realized that I do not even know what this feature of Java's synt …
0
votes
4answers
189 views
Problem with StringBuilder and XML Literals
I'm having a problem using XML literals with a StringBuilder in VB 2008. If I use this code everything is fine.
Dim html As New System.Text.StringBuilder
html.Append(<html> …
