Casting is a process where an object type is explicitly converted into another type if the conversion is allowed.

learn more… | top users | synonyms (4)

209
votes
8answers
44k views

Regular cast vs. static_cast vs. dynamic_cast

I've been writing C and C++ code for almost twenty years, but there's one aspect of these languages that I've never really understood. I've obviously used regular casts (i.e. MyClass *m = (MyClass ...
207
votes
9answers
99k views

Cast int to Enum in C#

What's a quick and easy way to cast an int to an enum in c#?
199
votes
4answers
55k views

When should static_cast, dynamic_cast and reinterpret_cast be used?

I am reasonably proficient in C++, but I do not have a lot of experience using the cast operators to convert pointers of one type to another. I am familiar with the risks and benefits of pointer ...
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 ...
82
votes
12answers
61k views

How do I check if a string is a number in Python?

What is the best possible way to check if a string can be represented as a number in Python? The function I currently have right now is: def is_number(s): try: float(s) return ...
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; ...
60
votes
9answers
5k views

C# - Assignment in an if statement

I have a class Animal, and its subclass Dog. I often find myself coding the following lines: if (animal is Dog) { Dog dog = animal as Dog; dog.Name; ... } For the variable ...
58
votes
15answers
1k views

When is an integer<->pointer cast actually correct?

The common folklore says that: The type system exists for a reason. Integers and pointers are distinct types, casting between them is a malpractice in the majority of cases, may indicate a design ...
56
votes
13answers
4k views

Casting vs using the 'as' keyword in the CLR

I'm learning about design patterns and because of that I've ended using a lot of interfaces. One of my "goals" is to program to an interface, not an implementation. What I've found is that I'm doing ...
48
votes
6answers
1k views

Strange behavior when casting a float to int in C#

I have the following simple code : int speed1 = (int)(6.2f * 10); float tmp = 6.2f * 10; int speed2 = (int)tmp; speed1 and speed2 should have the same value, but in fact, I have : speed1 = 61 ...
48
votes
15answers
3k views

Why should casting be avoided?

I generally avoid casting types as much as possible since I am under the impression that it's poor coding practice and may incur a performance penalty. But if someone asked me to explain why exactly ...
47
votes
9answers
21k views

In C++, why use static_cast<int>(x) instead of (int)x?

I've heard that, in C++, the static_cast function should be preferred to C-style or simple function-style casting. Is this true? Why?
45
votes
8answers
4k views

Do I cast the result of malloc?

In this question, someone suggested in a comment that I should not cast the results of malloc. I.e. int *sieve = malloc(sizeof(int)*length); rather than int *sieve = (int ...
43
votes
5answers
906 views

Difference between covariance and upcasting

What is the difference between covariance and upcasting, or, more specifically, why are they given different names? I've seen the following example referred to as 'upcasting': string s = "hello"; ...
43
votes
5answers
61k views

Safely casting long to int in Java

What's the most idiomatic way in Java to verify that a cast from long to int did not lose any information? This is my current implementation: public static int safeLongToInt(long l) { int i = ...
42
votes
6answers
22k views

Cast List<int> to List<string>

Does anyone know if you can cast a List<int> to List<string> somehow? I know I could loop through and .ToString() the thing but a cast would be awesome. I'm in c# 2.0 (so no linq)
40
votes
10answers
6k views

Direct casting vs 'as' operator?

Consider the following code: void Handler(object o, EventArgs e) { // I swear o is a string string s = (string)o; // 1 //-OR- string s = o as string; // 2 // -OR- string s = ...
38
votes
6answers
959 views

C# 'is' type check on struct - odd .NET 4.0 x86 optimization behavior

Update: I have filed a bug report with Microsoft Connect, please vote for it! Update 2: Microsoft have marked the bug report as fixed Posted by Microsoft on 18/08/2010 at 17:25 This bug will ...
37
votes
4answers
705 views

Do redundant casts get optimized?

I am updating some old code, and have found several instances where the same object is being cast repeatedly each time one of its properties or methods needs to be called. Example: if (recDate != ...
37
votes
7answers
26k views

How should I cast in VB.NET?

Are all of these equal? Under what circumstances should I choose each over the others? var.ToString() CStr(var) CType(var, String) DirectCast(var, String) EDIT: Suggestion from ...
36
votes
7answers
996 views

I use C-Style casts in my C++ project, is it worth refactoring to C++ casts?

I use C-Style casts in my 15K lines C++ project, 90% of the times for casts between child and base classes. Even when I read that it is bad to use them, and that they can result in severe errors, as ...
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#?
26
votes
3answers
387 views

Difference between &(*similarObject) and similarObject? Are they not same?

Can someone please explain this to me dynamic_cast<SomeObject *>( &(*similarObject) ); What is the point of doing the address of a dereferenced pointer? Wouldn’t the pointer itself just ...
25
votes
1answer
446 views

casting result to float in method returning float changes result

I wanted to understand why this code prints False in .net 4. I wanted to know what exactly what was going on with the cast. The answer was not "floating point is inaccurate" or "don't do that". ...
24
votes
5answers
2k views

Why does “int[] is uint[] == true” in C#

Can somebody clarify the C# is keyword please. In particular these 2 questions: Q1) line 5; Why does this return true? Q2) line 7; Why no cast exception? public void Test() { object intArray = ...
24
votes
12answers
2k views

Is casting the same thing as converting?

In Jesse Liberty's Learning C# book, he says "Objects of one type can be converted into objects of another type. This is called casting." If you investigate the IL generated from the code below, you ...
23
votes
10answers
4k views

C#'s equivalent to VB.Net's DirectCast?

This has probably been asked before, but if it has, I can't find it. Does C# have an equivalent to VB.Net's DirectCast? I am aware that it has () casts and the 'as' keyword, but those line up to CType ...
23
votes
5answers
68k views

How do I convert from int to long in Java?

I keep finding both on here and Google people having troubles going from long to int and not the other way around. Yet I'm sure I'm not the only one that has run into this scenario before going from ...
22
votes
5answers
647 views

Parse double precision IEEE floating-point on a C compiler with no double precision type

I am working with an 8-bit AVR chip. There is no data type for a 64-bit double (double just maps to the 32-bit float). However, I will be receiving 64-bit doubles over Serial and need to output 64-bit ...
22
votes
3answers
1k views

casting via void* instead of using reinterpret_cast

I'm reading a book and I found that reinterpret_cast should not be used directly, but rather casting to void* in combination with static_cast: T1 * p1=... void *pv=p1; T2 * p2= ...
22
votes
7answers
43k views

How do I add an integer value with javascript (jquery) to a value that's returning a string?

I have a simple html block like: <span id="replies">8</span> Using jquery I'm trying to add a 1 to the value (8). var currentValue = $("#replies").text(); var newValue = currentValue + ...
21
votes
2answers
349 views

Should this be ambiguous or not? (implicit casts)

struct A { A(const A& src); A(const char* src); }; struct B { operator A(); operator char*(); }; void test() { B v; A s(v); } EDG/Comeau and MSVC ...
21
votes
4answers
13k views

When to use reinterpret_cast?

I am little confused with the applicability of reinterpret_cast vs static_cast. From what I have read the general rules are to use static cast when the types can be interpreted at compile time hence ...
20
votes
8answers
467 views

What's the point in using “is” followed by “as” instead of “as” followed by a null check in C#?

While reading C# code I found a rather curious snippet: if( whatever is IDisposable) { (whatever as IDisposable).Dispose(); } I'd rather expect that being done either like this: if( whatever is ...
19
votes
2answers
285 views

Downcast in a diamond hierarchy

Why static_cast cannot downcast from a virtual base ? struct A {}; struct B : public virtual A {}; struct C : public virtual A {}; struct D : public B, public C {}; int main() { D d; A& a = ...
18
votes
3answers
33k views

Int to Char in C#

What is the best way to convert an Int value to the corresponding Char in Utf16, given that the Int is low enough? Boaz
17
votes
6answers
465 views

C# factory - is upcast a must?

Does the C# factory pattern require an upcast? I want God in class library G to create an Adam in class library A without making G dependant on A. God produces Adams for consumption by Eve in class ...
17
votes
4answers
28k views

Fastest way to convert string to integer in PHP

Using PHP, what's the fastest way to convert a string like this: "123" to an integer? Why is that particular method the fastest? What happens if it gets unexpected input, such as "hello" or an array? ...
16
votes
4answers
298 views

Why can I implicitly convert an int literal to an int * in C but not in C++?

I believed that in the following code, C "automatically casts 17 to an int *" which, as someone recently pointed out (but did not give the reasons as to why), is wrong. int *ptoi = 17; // I assumed ...
16
votes
5answers
199 views

Is it better to cast double as decimal or construct “new” decimal from double?

When going from a double to a decimal, presuming my double can be represented as a decimal... Is it more appropriate to cast a double as a decimal: (Explicit Numeric Conversions Table) (Note that ...
16
votes
5answers
715 views

What's wrong with casting 0.0 to double?

I have InvalidCastException when I try to cast 0.0 to double, why is that so? It's fine when I do (float)value instead.
16
votes
3answers
1k views

What are the differences between asInstanceOf[T] and (o: T) in scala?

I saw that there is 2 methods to cast an object : foo.asInstanceOf[Bar] (foo: Bar) When I tried I found that as asInstanceOf don't use the implicit conversions whereas the other one do. So what ...
16
votes
2answers
455 views

Why does this compile?

I was taken aback earlier today when debugging some code to find that something like the following does not throw a compile-time exception: public Test () { HashMap map = (HashMap) getList(); ...
16
votes
10answers
4k views

Is it safe to delete a void pointer?

Suppose I have the following code: void* my_alloc (size_t size) { return new char [size]; } void my_free (void* ptr) { delete [] ptr; } Is this safe? Or must ptr be cast to char* prior to ...
16
votes
6answers
12k views

Why is a SQL float different from a C# float

Howdy, I have a DataRow pulled out of a DataTable from a DataSet. I am accessing a column that is defined in SQL as a float datatype. I am trying to assign that value to a local variable (c# float ...
15
votes
1answer
156 views

Why does the ternary operator unexpectedly cast integers?

I have seen it discussed somewhere that the following code results in obj being a Double, but that it prints 200.0 from the left hand side. Object obj = true ? new Integer(200) : new Double(0.0); ...
15
votes
4answers
454 views

What exactly is a type cast in C/C++?

What exactly is a type cast in C/C++? How does the compiler check if an explicit typecast is needed (and valid)? Does it compare the space required for an value? If I have for example: int a; double ...
15
votes
2answers
224 views

Array to Object and Object to Array in PHP - interesting behaviour

Can you explain the next interesting behaviour? class test { //Class *test* has two properties, public and private. public $xpublic = 'x1'; private $xprivate = 'x2'; } $testObj = new test(); ...
15
votes
4answers
2k views

Should I explicitly cast malloc()'s return value?

I wanted to ask about the following case: char *temp; temp=malloc(10); Since the return type of malloc is void, will the pointer returned by the malloc be implicitly cast to char type before being ...
15
votes
2answers
2k views

implicit operator using interfaces

I have a generic class that I'm trying to implement implicit type casting for. While it mostly works, it won't work for interface casting. Upon further investigation, I found that there is a ...

1 2 3 4 5 62