Top "Type-conversion" questions

Type conversion is the way of implicitly or explicitly changing an entity of one data type into another.

How to convert a spatial dataframe back to normal dataframe?

This is a basic question but unfortunately I could not find the relevant command elsewhere. Is there a way i …

r type-conversion dataframe spatial
Java - char, int conversions

In Java, the following is allowed: char c = 'A' + 1; Here, c will hold the value 'B'. Above, first the expression …

java char type-conversion int variable-assignment
SQL Server 2008 convert varchar to varbinary

I try to import image data into a sql server 2008 db with code like this: INSERT INTO [TAB] (ID_PHOTO,…

sql-server type-conversion varbinary
Convert a byte or int to bitset

I have the following: int num=Integer.parseInt(lineArray[0]); byte numBit= num & 0xFF; Is there any very simple way …

java type-conversion bitarray
CASTING attributes for Ordering on a Doctrine2 DQL Query

I am trying to get Doctrine2 Entities, ordered by their ID which apparently is a String even though it contains …

casting doctrine-orm type-conversion dql
Convert from std::string to DWORD

I have a simple problem with a conversion: std::string str = "0xC0A80A02" and I need to convert it …

c++ string winapi type-conversion dword
C++ Implicit Conversion (Signed + Unsigned)

I understand that, regarding implicit conversions, if we have an unsigned type operand and a signed type operand, and the …

c++ type-conversion unsigned-integer arithmetic-expressions
Convert HttpContent into byte[]

I am currently working on a c# web API. For a specific call I need to send 2 images using an …

c# stream type-conversion bytearray httpcontext
Spring conversion service - from List<A> to List<B>

I have registered a custom conversion service in a Spring 3 application. It works well for POJOs but it does not …

java spring type-conversion spring-3