Tagged Questions

2
votes
5answers
73 views

Casting from Object in Java without getting an unchecked warning

I wrote a class that has a map of <String, Object>. I need it to hold arbitrary objects, but at the same time sometimes I need to cast some of those objects, so I'll do somet …
3
votes
7answers
174 views

Casting ints to enums in C#

There is something that I cannot understand in C#. You can cast an out-of-range int into an enum and the compiler does not flinch. Imagine this enum: enum Colour { Red = 1, …
0
votes
3answers
44 views

Getting cannot convert object to ArrayList error when retrieving ArrayList from HttpSession

I have saved an ArrayList to the session object. I am trying to retrieve it using sriList = session.getAttribute("scannedMatches"); I am getting the compile time error "Cannot c …
7
votes
10answers
290 views

Complicated C cast explanation

I'm trying to figure out what the following code in C does? ((void(*)())buf)(); where 'buf' is a char array.
0
votes
2answers
28 views

VB.NET Conversion problem when trying to convert from base class to subclass (BC30311: “Value of type ‘<type1>’ cannot be converted to ‘<type2>’”)

Hello! Please take a look at the following code: Public Sub Method(Of TEntity As EntityObject)(ByVal entity As TEntity) If TypeOf entity Is Contact Then Dim contact …
2
votes
2answers
55 views

How can you cast between wchar_t* and an int?

I have a function which returns the inner text of an xml element. It returns it, however, as a const wchar_t*. I wish to return this value as an integer (And a float in some othe …
1
vote
6answers
168 views

What is the difference between these two ways of casting in Java?

What is the difference between these two ways of casting in Java? (CastingClass) objectToCast; CastingClass.class.cast(objectToCast); The source of Class#cast(Object) is as fol …
2
votes
4answers
100 views

The as operator rejects the object even though the object appears to be of the correct type in the debugger.

The following code throws an exception. If there is no easy answer or stuff to check, I'll try to produce something that reproduces the error (though I don't know where to upload i …
1
vote
6answers
139 views

Beginner: Extending a class in C#, am I doing it wrong?

Again disclaimer disclaimer still learning C# and OOP generally so I hope you'll be patient with me :) I am currently working with a CMS that has a class called FileVersion which …
2
votes
5answers
89 views

Casting generic object array to two types

I've got a method that receives an Object[] and then performs actions on that array. At first I was passing in this array as an IEnumerable<T> however the T can be of two di …
1
vote
5answers
129 views

Casting const void pointer to array of const char pointers properly in C.

I have a piece of C code that looks like this: const char (*foo)[2] = bar(); Now bar() is a function that returns a (const void *). How do I properly cast this const pointer? Th …
4
votes
11answers
182 views

testing if a string can be cast as a integer in VB.NET

Is there a better way of testing if a string can be converted to an integer other than something like the following? Public Function IsInt(ByVal value As Object) As Boolean T …
1
vote
2answers
15 views

tsql casting to money rounds up

When casting a varchar value to MONEY it is rounding the value to the nearest 0.10, how do I prevent this rounding up? UPDATE: I found the problem. In a subquery, the value is bei …
3
votes
4answers
97 views

How dynamic casts work?

Let's say I have type A, and a derived type B. When I perform a dynamic cast from A* to B*, what kind of "runtime checks" the environment performs? How does it know that the cast i …
3
votes
3answers
154 views

Is there a Java equivalent to C#’s ‘checked’ keyword?

Yes, it's a trivial piece of code to write, but I still wonder if there's a built-in replacement. Here's the code: /** * Cast x to int, throw an exception if there's loss of inf …

1 2 3 4 5 28 next
15 30 50 per page