1
vote
2answers
138 views
Delphi: generics and ‘is’-operator problem
Based on an earlier post, I've written the following code. Please excuse the verbosity of this post. I believe it's better for all parties to have the full code available to test and comment on.
…
0
votes
10answers
275 views
Find out Type of C++ Void Pointer
Hello, I have a small question: how do I find out what type a C++ pointer is?
I often use a small function in my console programs to gather input, which looks something like this:
void query(string …
0
votes
5answers
73 views
C# Typecast Basic querry
Hi
I am new to C#
I have a struct like
struct Package
{
Public int[] intvalues;
Public char[] charvalues;
Public string strvalue;
}
Now I have a string
string strquery;
I want to take the value …
0
votes
4answers
115 views
Can I get Actionscript3 to type cast Numbers and ints in XML files as numbers and ints?
Everything seems to be a string right now & that kinda ruins the whole xml as an internal data structure thing, I don't need a big tree of string I need typed data :-/ Are there any changes I can …
0
votes
2answers
462 views
convert string list to int list in haskell
Hi,
I've got a list of strings, is it possible to convert it to an list of ints?
eg:
["1","2"] -> [1,2]
THANKS,
4
votes
7answers
228 views
C#: Any difference whatsoever between “(subtype)data” and “data as subtype” typecasting?
Assuming I have an instance of an object that I know belongs to a subclass of a certain subtype passed to me through a reference of a supertype in C#, I'm used to seeing typecasting done this …
-2
votes
2answers
213 views
typecast from integer in to structure in C
Hi
I am trying to access Byte array from an int array which contain address of byte array. i.e
MSMQ_SEND *ReadBytesFromArr = NULL;
ReadBytesFromArr = (MSMQ_SEND*)Queue_Element_Send[1];
where …
0
votes
4answers
266 views
Typecast:LPCTSTR to Char * for string concatenate operation
Can u Give solution for this code of typecasting, LPCTSTR to Char*
for below code snippet ,
char* s="HKEY_CURRENT_USER\\";
strcat(s,**(char*)lpSubKey** );
printf("%S",s);
here it makes error of …
0
votes
3answers
450 views
PHP Array extracting object
Suppose I have an array of a objects of user defined class. Wanted to know how do I extract the elements of the array in PHP.
// class definition
class User
{
public $fname;
public $lname;
}
// …
1
vote
5answers
59 views
Do special processing for a type in a generic class
Do special processing for a type in a generic class Pinnew member dan neely 19mins ago
I'm trying to roll up some old (originally .net 1.1) abstract classes into generics. The classes in question …
0
votes
1answer
288 views
Swig c++ w/ Java loses type on polymorphic callback functions
Question:
Why is my C++ swigged object losing its type when passed to a Java callback function?
Setup:
I've taken the Swig Java example for doing callbacks and added an object to be passed to the …
1
vote
1answer
182 views
Swig typecast to derived class?
I notice that Swig provides a whole host of functions to allow for typecasting objects to their parent classes. However, in C++ one can produce a function like the following:
A * getAnObject()
{
…
1
vote
2answers
184 views
MySQL Type Conversion: Why is float the lowest common denominator type?
I recently ran into an issue where a query was causing a full table scan, and it came down to a column had a different definition that I thought, it was a VARCHAR not an INT. When queried with …
0
votes
6answers
908 views
Is it possible to assign a base class object to a derived class reference with an explicit typecast in C#?.
Is it possible to assign a base class object to a derived class reference with an explicit typecast in C#?.
I have tried it and it creates a run-time error.
0
votes
3answers
191 views
Modify contents in foreach
I tend to use ArrayLists of structures. It is then very easy to cycle through the list with a foreach.
The problem I have is I cant use a foreach to modify the structures contents and have to use a …
