Tagged Questions
The type-conversion tag has no wiki summary.
155
votes
13answers
6k views
Why is the C# “as” operator so popular?
In development blogs, online code examples and (recently) even a book, I keep stumbling about code like this:
var y = x as T;
y.SomeMethod();
or, even worse:
(x as T).SomeMethod();
That doesn't ...
36
votes
13answers
4k views
What is the difference between casting and conversion?
Eric Lippert's comments in this question have left me thoroughly confused. What is the difference between casting and conversion in C#?
35
votes
11answers
24k views
C# Convert string to nullable type (int, double, etc…)
I am attempting to do some data conversion. Unfortunately, much of the data is in strings, where it should be int's or double, etc...
So what I've got is something like:
double? amount = ...
35
votes
10answers
91k views
How can I convert string to datetime with format specification in JavaScript?
How can I convert a string to a date time object in javascript by specifying a format string?
I am looking for something like:
var dateTime = convertToDateTime("23.11.2009 12:34:56", "dd.MM.yyyy ...
34
votes
7answers
663 views
Are there cases where a typedef is absolutely necessary?
Consider the following excerpt from the safe bool idiom:
typedef void (Testable::*bool_type)() const;
operator bool_type() const;
Is it possible to declare the conversion function without the ...
32
votes
9answers
2k views
What is “int i = 1;Why (i >= 60 * 60 * 1000 / 1 * 1000)” true?
First, defining two constant expressions without parentheses is my fault:
#define BIG_INTERVAL 60 * 60 * 1000
#define SMALL_INTERVAL 1 * 1000
int i = 1;
if (i >= BIG_INTERVAL / SMALL_INTERVAL - ...
25
votes
4answers
2k views
Should the MVVM ViewModel perform type conversion/validation?
We're just getting into MVVM in WPF.
We have implemented our ViewModels with 'strongly typed' properties (int, double? etc.) that we bind to in the view.
Type conversion works OK, mostly, and so ...
25
votes
7answers
23k views
signed to unsigned conversion in C - is it always safe?
Suppose I have the following C code:
unsigned int u = 1234;
int i = -5678;
unsigned int result = u + i;
What implicit conversions are going on here, and is this code safe for all values of u and ...
24
votes
5answers
1k views
Java conditional operator ?: result type
I'm a bit puzzled about the conditional operator. Consider the following two lines:
Float f1 = false? 1.0f: null;
Float f2 = false? 1.0f: false? 1.0f: null;
Why does f1 become null and the second ...
24
votes
8answers
8k views
C# - setting a property by reflection with a string value
I'd like to set a property of an object through reflection, with a value of type string.
So, for instance, suppose I have a Ship class, with a property of Latitude, which is a double.
Here's what I'd ...
21
votes
8answers
2k views
What is better: int.TryParse or try { int.Parse() } catch
I know.. I know... Performance is not the main concern here, but just for curiosity, what is better?
bool parsed = int.TryParse(string, out num);
if (parsed)
...
OR
try {
int.Parse(string);
}
...
17
votes
7answers
958 views
Why do Java and C# not have implicit conversions to boolean?
Since I started Java it's been very aggravating for me that it doesn't support implicit conversions from numeric types to booleans, so you can't do things like:
if (flags & 0x80) { ... }
...
16
votes
5answers
778 views
Why is −1 > sizeof(int)?
Consider the following code:
template<bool> class StaticAssert;
template<> class StaticAssert<true> {};
StaticAssert< (-1 < sizeof(int)) > xyz1; // Compile error
...
15
votes
1answer
193 views
How to get a List of (immutable and mutable) Sets in scala?
I try to build a list of (mutable and immutable) Sets. The compiler gets into trouble as it cannot figure out the type of that list. I always thought that I can connect Lists of any types and that the ...
14
votes
6answers
2k views
gcc, strict-aliasing, and casting through a union
Do you have any horror stories to tell? The GCC Manual recently added a warning regarding -fstrict-aliasing and casting a pointer through a union:
[...] Taking the address, casting the resulting ...
13
votes
6answers
183 views
JavaScript type conversion: (true && 1) vs (true | | 1)
JavaScript is non-strictly typed language as Java,for example.
As we know, it converts value of result dependently upon context:
"2" + "3" results "23"
"2" * "3" results 6
This is quite clear and ...
13
votes
2answers
3k views
ARC and bridged cast
With ARC, I can no longer cast CGColorRef to id. I learned that I need to do a bridged cast. According clang docs:
A bridged cast is a C-style cast annotated with one of three keywords:
...
13
votes
3answers
719 views
How to convert a gi-normous integer (in string format) to hex format? (C#)
Given a potentially huge integer value (in c# string format), I want to be able to generate it's hex equivalent. Normal methods don't apply here as we are talking arbitrarily large numbers, 50 digits ...
13
votes
5answers
9k views
How to convert from System.Enum to base integer?
I'd like to create a generic method for converting any System.Enum derived type to its corresponding integer value, without casting and preferably without parsing a string.
Eg, what I want is ...
13
votes
4answers
16k views
How can I convert a character to a integer in Python, and viceversa?
I want to get, given a character, its ascii value.
For example, for the character 'a', I want to get 97,
and viceversa.
Thanks,
Manuel
12
votes
3answers
313 views
Why does this implicit conversion from int to uint work?
Using Casting null doesn't compile as inspiration, and from Eric Lippert's comment:
That demonstrates an interesting case. "uint x = (int)0;" would
succeed even though int is not implicitly ...
12
votes
3answers
337 views
How many implicits are there in Scala?
If I haven't imported anything but Scala's usual defaults, how many implicits (implicit conversions) are in scope?
Is there a complete list of them somewhere, preferably organized by type that they ...
12
votes
4answers
561 views
Testing for Endianness: Why does the following code work?
While I do understand endianness, I am slightly unclear on how the code works below. I guess this question is less about endianness and more about how the char * pointer and int work i.e. type ...
12
votes
4answers
644 views
Compatible types and structures in C
I have the following code:
int main(void)
{
struct { int x; } a, b;
struct { int x; } c;
struct { int x; } *p;
b = a; /* OK */
c = a; /* Doesn't work */
p = &a; /* ...
12
votes
3answers
2k views
Difference between Convert.ToString() and .ToString()
What is the difference between Convert.ToString() and .ToString()?
I found many differences online, but what's the major difference?
12
votes
3answers
18k views
How can I convert OTF/TTF files to EOT format?
I need to use @font-face feature and my fonts are in OTF/TTF format and Microsoft browsers support only EOT format. I tried to use Microsoft tool WEFT, but it didn't work or I didn't understand how it ...
12
votes
3answers
546 views
What is the difference between (type)value and type(value)?
What is the difference between
(type)value
and
type(value)
in C++?
12
votes
3answers
2k views
How do I convert a String to an InputStream in Java?
Given a string:
String exampleString = "example";
How do I convert this to an InputStream?
12
votes
4answers
31k views
double to long conversion
In java, what is the best way to convert a double to a long?
Just cast? or
double d = 394.000;
long l = (new Double(d)).longValue();
System.out.println("double=" + d + ", long=" + l);
11
votes
1answer
376 views
Why subtract a value from itself (x - x) in Python?
In NumPy functions, there are often initial lines that do checking of variable types, forcing them to be certain types, etc. Can someone explain the point of these lines in scipy.signal.square? What ...
11
votes
2answers
23k views
Java:Convert long to String?
I am absolutely new to Java and Blackberry development. I've started learning Java and Blackberry development. I just created sample BB app, which can allow to choose the date.
DateField curDateFld = ...
11
votes
4answers
4k views
Most succinct way to convert ListBox.items to a generic list
I am using C# and targeting the .NET Framework 3.5. I'm looking for a small, succinct and efficient piece of code to copy all of the items in a ListBox to a List<String> (Generic List).
At the ...
11
votes
6answers
962 views
Why is the result of this explicit cast different from the implicit one?
Why is the result of this explicit cast different from the implicit one?
#include <stdio.h>
double a;
double b;
double c;
long d;
double e;
int main() {
a = 1.0;
b = 2.0;
...
10
votes
1answer
188 views
Why does not the compiler perform a type conversion?
Consider the following code:
#include <iostream>
#include <string>
struct SimpleStruct
{
operator std::string () { return value; }
std::string value;
};
int main ()
{
...
10
votes
1answer
1k views
Convert a sequence of strings to integers (Clojure)
I currently am having an issue where I have to read a text file from the command line containing at least one integer. I'm reading the file, doing a regular-expression match to ignore whitespace.
...
10
votes
4answers
411 views
How to combine Option values in Scala?
I want to be able to apply an operation f: (T,T) => T to Option[T] values in Scala. I want the result to be None if any of the two values is None.
More specifically, I want to know if is there a ...
10
votes
3answers
337 views
How does the CLR know the type of a boxed object?
When a value type is boxed, it is placed inside an untyped reference object.
So what causes the invalid cast exception here?
long l = 1;
object obj = (object)l;
double d = (double)obj;
9
votes
1answer
198 views
Convert vs. CType
I am somewhat confused about presence of two seemingly identical VB.NET functions: CType(args) and Convert.ToType(args). I'm fairly new to .NET and VB in general, so I'm not quite sure whether one of ...
9
votes
5answers
559 views
What's the origin of asking interviewees to manually parse a string as an int?
I'm wondering, what's the origin of asking interviewees to manually parse a string as an int? (without relying on any casting/type-conversion that may be built into the language). Is this a standard ...
9
votes
5answers
250 views
JSON object conversion question
I am converting from JSON to object and from object to array. It does not what I expected, can you explain to me?
$json = '{"0" : "a"}';
$obj = json_decode($json);
$a = (array) $obj;
print_r($a);
...
9
votes
2answers
888 views
Convert Scala Set into Java (java.util.Set)?
I have a Set in Scala (I can choose any implementation as I am creating the Set. The Java library I am using is expecting a java.util.Set[String].
Is the following the correct way to do this in Scala ...
9
votes
4answers
25k views
How to convert NSData to byte array in iPhone?
I want to convert NSData to a byte array, so I write the following code:
NSData *data = [NSData dataWithContentsOfFile:filePath];
int len = [data length];
Byte byteData[len];
byteData = [data bytes];
...
9
votes
1answer
3k views
Explicit Type Conversion in Scala
Lets say I have the following code:
abstract class Animal
case class Dog(name:String) extends Animal
var foo:Animal = Dog("rover")
var bar:Dog = foo //ERROR!
How do I fix the last line of this ...
8
votes
1answer
86 views
Override to!T() for used-defined T in D?
I have structs and classes that I'd like to be able to easily create from strings in a generic fashion, using the to!T(string) method. However, I'm not sure how I could 'override' the method to get ...
8
votes
3answers
130 views
Decimal Conversion F# Script vs. Compiled F#
In the F# Interactive, the following piece of code works:
> printfn "%A" (decimal 1I)
1M
However, in a compiled F# program, an error message appears:
The type 'Numerics.BigInteger' does not ...
8
votes
2answers
121 views
What is the standard definition of object equality for “==”?
There seems to be a mismatch between the common understanding of == and what it actually does. To give some background for the issue:
typeof new Number(1); // returns object
typeof new String(1); // ...
8
votes
1answer
196 views
Delphi compile-time integer conversion warnings?
In Delphi XE or 2006, is there any way to detect at compile time that implicit conversions between integer types may lose data? I realize it's possible to detect this with runtime checking. I would ...
8
votes
4answers
476 views
Check if object is Class type
I have a method that receives a NSArray of Class objects and I need to check if they all are Class type generated with the code bellow:
NSMutableArray *arr = [[NSMutableArray alloc] init];
[arr ...
8
votes
1answer
403 views
Problem with type coercion and string concatenation in JavaScript in Greasemonkey script on Firefox
I'm creating a GreaseMonkey script to improve the user interface of the 10k tools Stack Overflow uses. I have encountered an unreproducible and frankly bizarre problem that has confounded me and the ...
8
votes
1answer
881 views
Convert string to integer type in Go?
I'm trying to convert a string returned from flag.Arg(n) to an int. What is the idiomatic way to do this in Go?