active questions tagged typecast - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T01:07:19Zhttp://stackoverflow.com/feeds/tag/typecasthttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1761487/delphi-generics-and-is-operator-problem1Delphi: generics and 'is'-operator problemconciliator2009-11-19T07:23:31Z2009-11-19T08:47:56Z
<p>Based on an earlier <a href="http://stackoverflow.com/questions/1755938/delphi-determine-actual-type-of-a-generic">post</a>, 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.</p>
<pre><code>program sandbox;
{$APPTYPE CONSOLE}
uses
SysUtils,
Generics.Collections;
type
TDataType = class
// Stuff common to TInt and TStr
end;
TInt = class(TDataType)
FValue: integer;
constructor Create(Value, Low, High: integer);
end;
TStr = class(TDataType)
FValue: string;
constructor Create(Value: string; Length: integer);
end;
TSomeClass = class
FIntList: TList<TInt>;
FStrList: TList<TStr>;
procedure AddToList<T: TDataType>(Element: T);
constructor Create();
procedure Free();
end;
constructor TInt.Create(Value, Low, High: Integer);
begin
inherited Create();
FValue := Value;
end;
constructor TStr.Create(Value: string; Length: Integer);
begin
inherited Create();
FValue := Value;
end;
procedure TSomeClass.AddToList<T>(Element: T);
begin
if TObject(Element) is TInt then
FIntList.Add(Element)
else if TObject(Element) is TStr then
FStrList.Add(Element);
end;
constructor TSomeClass.Create();
begin
inherited;
FIntList := TList<TInt>.Create();
FStrList := TList<TStr>.Create();
end;
procedure TSomeClass.Free();
var
SomeIntItem: TInt;
SomeStrItem: TStr;
begin
for SomeIntItem in FIntList do begin
SomeIntItem.Free();
end;
for SomeStrItem in FStrList do begin
SomeStrItem.Free;
end;
FIntList.Free();
FStrList.Free();
end;
var
Inst: TSomeClass;
begin
try
{ TODO -oUser -cConsole Main : Insert code here }
Inst := TSomeClass.Create;
Inst.AddToList(TInt.Create(100, 0, 101));
Inst.AddToList(TStr.Create('Test', 10));
Inst.Free;
except
on E:Exception do
Writeln(E.Classname, ': ', E.Message);
end;
end.
</code></pre>
<p>Note that the constructors of <code>TInt</code> and <code>TStr</code> in the real world would utilize the <code>Low, High: integer</code> and <code>Length: integer</code> parameters as well. I'm having an "E2089 Invalid typecast" at <code>if TObject(Element) is TInt then</code> and <code> else if TObject(Element) is TStr then</code> running Delphi 2009. Do anyone know why this happens?</p>
<p>Edit: Please note that <code>TInt</code> and <code>TStr</code> are just two of possibly 10-20 other types; otherwise overloading is <em>the</em> tool for the job. :)</p>
http://stackoverflow.com/questions/1718412/find-out-type-of-c-void-pointer0Find out Type of C++ Void Pointernew1234562009-11-11T22:10:23Z2009-11-11T22:30:50Z
<p>Hello, I have a small question: how do I find out what type a C++ pointer is?</p>
<p>I often use a small function in my console programs to gather input, which looks something like this:</p>
<pre><code>void query(string what-to-ask, [insert datatype here] * input)
</code></pre>
<p>I would like to create a generic form, using a void pointer, but I can't cin a void pointer, so how to I find out it's type so I can cast it?</p>
http://stackoverflow.com/questions/1690220/c-typecast-basic-querry0C# Typecast Basic querryblah4042009-11-06T20:34:10Z2009-11-06T20:58:34Z
<p>Hi
I am new to C#
I have a struct like</p>
<pre><code>struct Package
{
Public int[] intvalues;
Public char[] charvalues;
Public string strvalue;
}
</code></pre>
<p>Now I have a string </p>
<pre><code>string strquery;
</code></pre>
<p>I want to take the value of intvalues of the Package whose name is strquery.</p>
<p>As far as I tried, this didnt work</p>
<pre><code>(Package)strquery.strvalue
</code></pre>
<p>Please help</p>
http://stackoverflow.com/questions/543454/php-array-extracting-object0PHP Array extracting objectUndefined2009-02-12T21:43:30Z2009-11-02T19:08:27Z
<p>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.</p>
<pre><code>// class definition
class User
{
public $fname;
public $lname;
}
// array of objects of the class defined above
$objUser1 = new User():
$objUser2 = new User():
$objUser3 = new User():
$objUser4 = new User():
$alUser = array();
$alUser[] = $objUser1;
$alUser[] = $objUser2;
$alUser[] = $objUser3;
$alUser[] = $objUser4;
// trying to iterate and extract values using typcasting - this does not work, what is the alternative.
foreach($alUser as $user)
{
$obj = (User) $user; // gives error - unexpected $user;
}
</code></pre>
<p>Thats how I used to do in java while extracting objects from the Java ArrayList, hence thought the PHP way might be similar. Can anyone explain it.</p>
http://stackoverflow.com/questions/919937/convert-string-list-to-int-list-in-haskell0convert string list to int list in haskellpier2009-05-28T09:16:05Z2009-10-03T21:12:39Z
<p>Hi,
I've got a list of strings, is it possible to convert it to an list of ints?</p>
<p>eg:
["1","2"] -> [1,2]</p>
<p>THANKS,</p>
http://stackoverflow.com/questions/1344690/can-i-get-actionscript3-to-type-cast-numbers-and-ints-in-xml-files-as-numbers-and0Can I get Actionscript3 to type cast Numbers and ints in XML files as numbers and ints?technicalbloke2009-08-28T02:13:36Z2009-08-31T17:30:39Z
<p>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 make to either my XML files or my AS3 code that will force it to cast ints as ints and Numbers as Numbers? Or maybe some kind of type schema I can impose?</p>
<p>Not really worked with XML til recently so chances are I'm just ignorant of the canonical way to deal with this... enlightenment please gurus!</p>
<p>Thanks :)</p>
<p>Roger.</p>
http://stackoverflow.com/questions/1305431/typecast-from-integer-in-to-structure-in-c-2typecast from integer in to structure in C Bhrkamal2009-08-20T11:06:30Z2009-08-20T19:04:54Z
<p>Hi</p>
<p>I am trying to access Byte array from an int array which contain address of byte array. i.e </p>
<pre><code>MSMQ_SEND *ReadBytesFromArr = NULL;
ReadBytesFromArr = (MSMQ_SEND*)Queue_Element_Send[1];
</code></pre>
<p>where Queue_Element_Send[1] contains address.which contain byte array.</p>
<p>but i am getting some junk character after typecast in C code only. </p>
<p>definition of MSMQ_SEND:</p>
<pre><code>typedef struct MESSAGE_QUQUE {
BYTE *Queue_Element;
INT32 Queue_Element_Len;
} MSMQ_SEND;
</code></pre>
http://stackoverflow.com/questions/1260009/typecastlpctstr-to-char-for-string-concatenate-operation0Typecast:LPCTSTR to Char * for string concatenate operationRajakumar2009-08-11T12:21:46Z2009-08-11T12:51:41Z
<p>Can u Give solution for this code of typecasting, LPCTSTR to Char*
for below code snippet ,</p>
<pre><code>char* s="HKEY_CURRENT_USER\\";
strcat(s,**(char*)lpSubKey** );
printf("%S",s);
</code></pre>
<p>here it makes error of access violation ,so what will be the solution for that?.
...thanks in advance</p>
http://stackoverflow.com/questions/1168386/c-any-difference-whatsoever-between-subtypedata-and-data-as-subtype-typec4C#: Any difference whatsoever between "(subtype)data" and "data as subtype" typecasting?Fabio de Miranda2009-07-22T21:33:37Z2009-07-22T22:04:53Z
<p>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 Java-like way (Assuming "reference" is of the supertype):</p>
<pre><code>if (reference is subtype){
subtype t = (subtype)reference;
}
</code></pre>
<p>But recently I've come across examples of what appears to be the same thing done this way:</p>
<pre><code>if (reference is subtype){
subtype t = reference as subtype;
}
</code></pre>
<p>Are those two completely equivalent? Is there any difference?</p>
http://stackoverflow.com/questions/1127234/do-special-processing-for-a-type-in-a-generic-class1Do special processing for a type in a generic class Dan Neely2009-07-14T18:45:14Z2009-07-14T19:17:03Z
<p>Do special processing for a type in a generic class Pinnew member dan neely 19mins ago </p>
<p>I'm trying to roll up some old (originally .net 1.1) abstract classes into generics. The classes in question all provide similar functionality for a data object of a specific type. For the most part things are going well, but I've ran into a few places where one one of the data objects is of a type that needs extra processing in one method beyond what all the other types need. I can check the type of T to see if it's the type I need to do the special processing for, but the cast from T to SpecialType won't compile. Is there a different way I can do this, or is what I want to do impossible?</p>
<pre><code>class MyGenericClass : ICloneable where T: class, new()
{
private T m_storedClass;
...
private DoStuff()
{
//do stuff for all types
//objects of SpecialType need extra stuff done.
if (typeof(T) == typeof(SpecialType))
{
//compiler error: Error Cannot convert type 'T' to 'SpecialType'
((SpecialType)m_storedClass).SpecialString = "foo";
}
}
</code></pre>
http://stackoverflow.com/questions/1077387/swig-c-w-java-loses-type-on-polymorphic-callback-functions0Swig c++ w/ Java loses type on polymorphic callback functionsPetriborg2009-07-03T00:52:24Z2009-07-05T21:49:57Z
<p><em>Question</em>:
Why is my C++ swigged object losing its type when passed to a Java callback function?</p>
<p><em>Setup</em>:
I've taken the Swig Java example for doing callbacks and added an object to be passed to the callback <code>run(Parent p)</code>. The callback works as expected but when I pass a <code>Child</code> object the Java seems to lose its type and think its of type <code>Parent</code> when it should be <code>Child</code>. This is based on the <a href="https://swig.svn.sourceforge.net/svnroot/swig/trunk/Examples/java/callback/" rel="nofollow">Swig java callback example</a>.</p>
<p><em>System Info</em>:
Ubuntu 8.04 w/ Swig 1.3.33 - on the off chance the latest Swig made a difference I also tested 1.3.39 - which had no effect.</p>
<p><em>Outputs</em>:</p>
<pre>
bash$ java -Djava.library.path=. runme
Adding and calling a normal C++ callback
----------------------------------------
Callback::run(5Child)
Callback::~Callback()
Adding and calling a Java callback
------------------------------------
JavaCallback.run(Parent)
Callback::run(5Child)
Callback::~Callback()
</pre>
<p>As you can see in the outputs - the object is really of type Child - but its Java class name is Parent - which is wrong...</p>
<p>If you look in the Java callback <code>run(Parent p)</code> you can see where I'm fetching the Java class, and Java really does think this object is of type <code>Parent</code> - trying to cast this to Child will throw <code>ClassCastException</code> as expected.</p>
<p><em>Code</em>:</p>
<pre><code>/* File : example.i */
%module(directors="1") example
%{
#include "example.h"
%}
%include "std_string.i"
/* turn on director wrapping Callback */
%feature("director") Callback;
%include "example.h"
/* File : example.h */
#include <string>
#include <cstdio>
#include <iostream>
#include <typeinfo>
class Parent {
public:
virtual const char* getName() {
return typeid(*this).name();
}
};
class Child : virtual public Parent {
};
class Callback {
public:
virtual ~Callback() { std::cout << "Callback::~Callback()" << std:: endl; }
virtual void run(Parent& p) { std::cout << "Callback::run(" << p.getName() << ")" << std::endl; }
};
class Caller {
private:
Callback *_callback;
public:
Caller(): _callback(0) {}
~Caller() { delCallback(); }
void delCallback() { delete _callback; _callback = 0; }
void setCallback(Callback *cb) { delCallback(); _callback = cb; }
void call() {
Parent *p = new Child();
if (_callback)
_callback->run(*p);
delete p;
}
};
/* File: runme.java */
public class runme
{
static {
try {
System.loadLibrary("example");
} catch (UnsatisfiedLinkError e) {
System.err.println("Native code library failed to load. See the chapter on Dynamic Linking Problems in the SWIG Java documentation for help.\n" + e);
System.exit(1);
}
}
public static void main(String[] args)
{
System.out.println("Adding and calling a normal C++ callback");
System.out.println("----------------------------------------");
Caller caller = new Caller();
Callback callback = new Callback();
caller.setCallback(callback);
caller.call();
caller.delCallback();
callback = new JavaCallback();
System.out.println();
System.out.println("Adding and calling a Java callback");
System.out.println("------------------------------------");
caller.setCallback(callback);
caller.call();
caller.delCallback();
// Test that a double delete does not occur as the object has already been deleted from the C++ layer.
// Note that the garbage collector can also call the delete() method via the finalizer (callback.finalize())
// at any point after here.
callback.delete();
System.out.println();
System.out.println("java exit");
}
}
class JavaCallback extends Callback
{
public JavaCallback()
{
super();
}
public void run(Parent p)
{
System.out.println("JavaCallback.run("+p.getClass().getSimpleName()+")");
super.run(p);
}
}
# File: Makefile
TOP = ../..
SWIG = $(TOP)/../preinst-swig
CXXSRCS = example.cxx
TARGET = example
INTERFACE = example.i
SWIGOPT =
all:: java
java::
$(MAKE) -f $(TOP)/Makefile CXXSRCS='$(CXXSRCS)' SWIG='$(SWIG)' \
SWIGOPT='$(SWIGOPT)' TARGET='$(TARGET)' INTERFACE='$(INTERFACE)' java_cpp
javac *.java
clean::
$(MAKE) -f $(TOP)/Makefile java_clean
check: all
</code></pre>
<p>This might be a bug in Swig - but I'm hoping that this is my being stupid with C++ types/casting...</p>
<p>Any thoughts would be greatly appreciated!</p>
http://stackoverflow.com/questions/966894/swig-typecast-to-derived-class1Swig typecast to derived class?Zack2009-06-08T20:39:24Z2009-06-18T17:40:32Z
<p>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:</p>
<pre><code>A * getAnObject()
{
if(someBoolean)
return (A *) new B;
else
return (A *) new C;
}
</code></pre>
<p>Where "A" is the parent of classes "B" and "C". One can then typecast the pointer returned into being a "B" type or "C" type at one's convenience like:</p>
<pre><code>B * some_var = (B *) getAnObject();
</code></pre>
<p>Is there some way I can typecast an object I've received from a generic-pointer-producing function at run-time in the scripting language using the wrappers? (In my case, Lua?) I have a function that could produce one of about a hundred possible classes, and I'd like to avoid writing an enormous switch structure that I'd have to maintain in C++. At the point where I receive the generic pointer, I also have a string representation of the data type I'd like to cast it to.</p>
<p>Any thoughts? Thanks!</p>
<p>-- EDIT --</p>
<p>I notice that SWIG offers to generate copy constructors for all of my classes. If I had it generate those, could I do something like the following?: </p>
<pre><code>var = myModule.getAnObject(); -- Function that returns an object type-cast down to a pointer of the parent class, as in the function getAnObject() above.
var = myModule.ClassThatExtendsBaseClass(var); -- A copy constructor that SWIG theoretically creates for me
</code></pre>
<p>and have var then be an instance of the inheriting class that <em>knows</em> it's an instance of the inheriting class?</p>
http://stackoverflow.com/questions/889792/mysql-type-conversion-why-is-float-the-lowest-common-denominator-type1MySQL Type Conversion: Why is float the lowest common denominator type?MBCook2009-05-20T19:30:42Z2009-05-20T19:43:20Z
<p>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 "string_column = 17" the query ran, it just couldn't use the index. That really threw me for a loop.</p>
<p>So I went searching and found what happened, the behavior I was seeing is consistent with what <a href="http://dev.mysql.com/doc/refman/5.0/en/type-conversion.html" rel="nofollow">MySQL's documentation</a> says:</p>
<blockquote>
<p>In all other cases, the arguments are compared as floating-point (real) numbers. </p>
</blockquote>
<p>So my question is... why a float?</p>
<p>I could see trying to convert numbers to strings (although the points in the MySQL page linked above are good reasons not to). I could also understand throwing some sort of error, or generating a warning (my preference). Instead it happily runs.</p>
<p>So why convert everything to a float? Is that from the SQL standard, or based on some other reason? Can anyone shed some light on this choice for me?</p>
http://stackoverflow.com/questions/862979/modify-contents-in-foreach0Modify contents in foreachTim2009-05-14T12:12:46Z2009-05-14T12:24:09Z
<p>I tend to use ArrayLists of structures. It is then very easy to cycle through the list with a foreach.</p>
<p>The problem I have is I cant use a foreach to modify the structures contents and have to use a for and messy typecasts. </p>
<pre><code>((dataStructure)files[x]).name = here;
</code></pre>
<p>Is there a tidier way to do it?</p>
http://stackoverflow.com/questions/746014/how-can-i-call-explicitly-implemented-interface-method-from-powershell4How can I call explicitly implemented interface method from PowerShell?alex2k82009-04-14T01:35:16Z2009-04-17T17:17:38Z
<p>Code:</p>
<pre><code>add-type @"
public interface IFoo
{
void Foo();
}
public class Bar : IFoo
{
void IFoo.Foo()
{
}
}
"@ -Language Csharp
$bar = New-Object Bar
($bar -as [IFoo]).Foo() # ERROR.
</code></pre>
<p>Error:</p>
<blockquote>
<p>Method invocation failed because [Bar]
doesn't contain a method named 'Foo'.</p>
</blockquote>
http://stackoverflow.com/questions/729527/is-it-possible-to-assign-a-base-class-object-to-a-derived-class-reference-with-an0Is it possible to assign a base class object to a derived class reference with an explicit typecast in C#?.sahil garg2009-04-08T11:12:38Z2009-04-08T11:52:11Z
<p>Is it possible to assign a base class object to a derived class reference with an explicit typecast in C#?.</p>
<p>I have tried it and it creates a run-time error.</p>
http://stackoverflow.com/questions/385572/need-help-typecasting-in-python1Need help-typecasting in Pythonrejinacm2008-12-22T04:35:18Z2008-12-22T16:22:34Z
<p>Help me people
Last week I asked about unicode conversion.I got only one reply.I need more suggestions. </p>
<p>I need to convert strings in Python to other types such as unsigned and signed int 8 bits,unsigned and signed int 16 bits,unsigned and signed int 32 bits,unsigned and signed int 64 bits,double,float,string,unsigned and signed 8 bit,unsigned and signed 16 bit, unsigned and signed 32 bit,unsigned and signed 64 bit.</p>
<p>Exact duplicate: <a href="http://stackoverflow.com/questions/374318/conversion-of-unicode-string-in-python">conversion of unicode string in python</a></p>