Type conversion is the way of implicitly or explicitly changing an entity of one data type into another. This is done to take advantage of certain features of type hierarchies or type representations.

learn more… | top users | synonyms

4
votes
1answer
87 views

How is actually done floating point conversion (double to float or float to double) in C++?

So I've searched about this topic and found nothing really relevant on this topic. I've tried to look at the assembly behind this simple code : int main(int argc, char *argv[]) { double d = ...
0
votes
1answer
17 views

Java convert StringBuilder into CharBuffer

I need to send some StringBuilder sb content using a CharBuffer I was hopping for something like CharBuffer.wrap( sb) but cannot find any elegant way Before settling for brute force, Is there a neat ...
-2
votes
3answers
56 views

show indexOfObject in UILabel

I am trying to show the number of objects in an NSArray in a UILabel as part of a UITabelViewCell: UILabel *numberLabel = (UILabel *)[cell viewWithTag:103]; numberLabel.numberOfLines = ...
0
votes
1answer
39 views

inserting c# double values to sql server float field. (no fractional part)

I am trying to insert double values to my database via EF 5. I generated EF entity model from db. There is a price column in the table which is float, and naturally EF generated a double type for the ...
1
vote
2answers
68 views

Convert unsigned long long to double in C

I realize this question could be processor dependent, but hopefully someone can point me in the right direction. For the life of me, I cannot figure out how to convert an unsigned long long int ...
0
votes
0answers
23 views

Tool/method to convert a varbinary to an image file

I have a table in a SQL Server 2008 with images (JPG) stored in a varbinary column. I was wondering if there's a really simple way of converting a varbinary back to a image file. For example - I'm ...
0
votes
2answers
45 views

Get the strongly typed property value from object in Java

What is the best way to get a strongly typed value of a property, using the property name as string, of an object in Java. For eg: A Person class with age field as an integer, say 21. If the ...
0
votes
1answer
32 views

type cast in EL expressions using Thymeleaf

How can I convert object types within EL expressions? Thymeleaf engine doesn't seem to understand something like this: <span th:text="${((NewObjectType)obj).amount"></span> Thanks. ...
1
vote
3answers
34 views

Assign property value with type conversion in Java

What is the best way to assign a value with type conversion to a property of an object in Java. For eg: A Person class with age field as an integer. If the following statement has to assign integer ...
1
vote
2answers
36 views

Python3 Error: TypeError: Can't convert 'bytes' object to str implicitly

I am working on exercise 41 in learnpythonthehardway and keep getting the error: Traceback (most recent call last): File ".\url.py", line 72, in <module> question, answer = ...
0
votes
5answers
72 views

Converting a string to int, for a SQL Database call

I am trying to execute a SQL select statement to retrieve my id, then increment the id. I can select from the database just fine. But when I try to convert the string to a int, I get the error of ...
0
votes
3answers
39 views

C# Convert double to string cut some last numbers

I have latitude and longitude in double and I want to convert them to string format with dot. So I am using: start_lon.ToString(CultureInfo.InvariantCulture) and I get right format (I get dot) but ...
-6
votes
5answers
57 views

Cannot impliciltly convert type 'System.Collections.Generic.List<BallSeparation.Ball>' to 'bool' [closed]

I have this error on for (Ball ball; ballList) The error message is "Cannot impliciltly convert type 'System.Collections.Generic.List<BallSeparation.Ball>' to 'bool'" May I know how do ...
1
vote
3answers
33 views

How to convert an (char) array containing 8 bytes(which represent a 64bit int) to a string

As written in the title, I need to convert an (char) array containing 8 bytes(which represent a 64bit int) to a string. I'm using c code on a NEC78K0R (16 bit mcu). I'm using the IAR Embedded ...
1
vote
1answer
20 views

What is special about 008 for type juggling to fail?

What is special about the string '008' and anything higher that would cause the type juggling to (for lack of a better word) fail? All numbered strings below 008 work fine, anything from 008 or higher ...
0
votes
3answers
64 views

Universal generic type conversion from string

My task is to write a method StringToType() that converts a string to the specified type T. For primitive types, I use the method Convert.ChangeType() For enum-types - Enum.TryParse() For all other ...
4
votes
1answer
39 views

Assigning a byte value to a char array

The method Array.SetValue(Object value, int index) allows assignments involving value/array type pairs that would normally be allowed using the common indexer syntax, and throws an exception when you ...
0
votes
2answers
53 views

c# String to Integer to DateTime ISO Format

I am a bit lost and need your help, this seems to be easy in PHP but I am new to C#. I have a string string str = "41305"; // equivalent to 01/31/2013, parse from excel reader. I need to insert ...
-2
votes
1answer
20 views

Converting lines from a file into a string [closed]

I am reading a file with $myfileLines = file("textFile.txt"); The contents of textFile.txt are just plain text is there any way to convert lets say the first line of ...
1
vote
1answer
25 views

Using text from a file to point to another file to read

Note: I'm sorry if the title was a little unclear couldn't think of another way to put it. I am making a PHP posting system for a blog like website. I have a file called posts.txt which has ...
0
votes
1answer
26 views

How to return different types in v8

I have not been able to find a general list for returning different types in v8. For instance to return an Number in v8 you would do Handle<Value> some_function(const v8::Arguments& args) { ...
-2
votes
2answers
34 views

SQL Commands give error [closed]

This is my code. I need to get result in specific period. I used 3 statements and all give an error. I can't post photo with output error till I get 10 vote DateTime d = ...
3
votes
2answers
47 views

Converting String to Date in java

i am programming in java , and i a little problem since yesterday in parsing Date (converting from String to Date) Here is the exception : java.text.ParseException: Unparseable date: "Fri May 24 ...
0
votes
5answers
135 views

Implicit conversion from type Char[] to string is not possible

I want to do the following but I get this Error: an Implicit conversion from type Char[] to string is not possible. string Pattern2 = (Convert.ToDateTime(currMail.CreationTime).ToString(" ...
0
votes
1answer
23 views

Postgres: how to convert from unix epoch to date?

The statement gives me the date and time. How could I modify the statement so that it returns only the date? SELECT to_timestamp( TRUNC( CAST( epoch_ms AS bigint ) / 1000 ) );
0
votes
1answer
29 views

Javascript fuction declaration conversion

I have a javascript function declared as myFunction: function() { // some codes... } and I want to convert the declaration format to function myFunction() { // some codes... } First of all ...
0
votes
4answers
104 views

conversion from unsigned char* to const wchar_t*

I am using the following code to convert a string from unsigned char* to const wchar_t* . The error I am getting is that only a few words are being converted properly while the rest is garbled value. ...
0
votes
0answers
23 views

Convert from Object to Dictionary

can anyone tell me the correct way to convert from Object to Dictionary I used this way. public void ReceiveFriedns(Object obj) { Dictionary<string,object> ht = new ...
7
votes
2answers
155 views

How to convert u32string to int in C++11?

How can we convert u32string to int in C++11? Additional, what method should I use to convert part of such string to int - lets say having begin and end iterator available? I've tried: u32string ...
-1
votes
6answers
67 views

How to convert a hexadecimal value contained in a char (byte) to an integer?

I just want to know how to convert an hexadecimal value contained in a char (byte) into an integer. I want to convert the color buffer from a .bmp file which is of course in hexadecimal and convert it ...
2
votes
2answers
57 views

How can I convert Scala Map to Java Map with scala.Float to java.Float k/v conversion

I would like to be able to perform the following, but it fails in the call to useMap. How can I perform this conversion? scala> import scala.collection.JavaConversions._ import ...
1
vote
0answers
61 views

String.valueOf(Double) in a tight loop makes a ton of garbage

I've got a function that gets called every few milliseconds that needs to convert a double to a character array, string, or other method of storing text. It's immediately written to the screen using ...
1
vote
2answers
26 views

Conversion from nvarchar to time format failing?

I'm trying to convert from nvarchar to time but I get a conversion from nvarchar to date and/or time failed exception. This is my stored procedure: USE [groep2_festivals] GO /****** Object: ...
3
votes
2answers
37 views

C++ - Converting between string and LPCWSTR

I am trying to write a function to convert a string to a LPCWSTR. Here's what I have: LPCWSTR stoLPCWSTR(string str) { wstring w(str.begin(), str.end()); return w.c_str(); } I've run this ...
0
votes
2answers
44 views

How can I set default value to exceptions in automapper while mapping from string to int type property?

I am trying to map one object to another but I am getting a problem while mapping an empty string to type int or a non integer string to int, so what I want that if I such exceptions occur it must ...
1
vote
6answers
82 views

“Downcast” an object to its base type in C#

I'm still working on my general-purpose logging component which should handle any kind of an object and convert it ("serialize" it) to a string. Works quite well so far - except for one requirement: ...
-6
votes
0answers
43 views

XerXes - C To C# Conversion [closed]

i have got the said to be code of XerXes, a network stress tester, made by th3j35t3r. I was wondering if anyone could convert this c to C#. You don't understand how grateful i would be. You will also ...
0
votes
3answers
75 views

Conversion from size_t to int

Following this thread ... For this piece of code: #include <stdio.h> int main(void) { int i; size_t u; for (i = 0; i < 10; i++) { u = (size_t)i; printf("i = ...
0
votes
3answers
66 views

Issue with Conversion from struct to char *

I have a struct of size 57 bytes but when i convert to char *, the size of char * variable shows only 4 bytes. What is the problem with this? Code: struct overhead{ unsigned char flags; ...
0
votes
2answers
53 views

Double to Number

How to convert Double to Number in Java, like in the code below? public Number parse(String text, ParsePosition status) { // find the best number (defined as the one with the longest parse) ...
0
votes
1answer
305 views

XE4 ( Firemonkey + iOS Static Library) , Pascal conversion from Objective C Class?

How to Conversion ? (Objective C Class -> Delphi XE4 ) and How to use Objective-C Class in static Library from Delphi XE ? Following is the my first trial. But It makes error. Objective C Source ...
0
votes
3answers
36 views

Getting perplexing results in Ruby trying to do integer.to_s to convert it to a string

Very simply put, when I try to insert an integer into a method, then convert it into a string, and print out the first character into the string, I get the number in the [0] slot + 48. Without fail, I ...
0
votes
2answers
45 views

Convert a binary number to human readable text

I am using Python 3.3. I get my data from a serial port and each byte I get correspond to one whole number. (no number is greater than 255, so no multi-byte numbers). I have been trying way to long ...
0
votes
0answers
16 views

Error: variable has initializer but incomplete type

#define SHMKEY ((long)12344) #define SEMKEY ((long)12345) #define MAXS 10000 #define MAXL 1000 typedef struct{ int lung;`` int i; char s[MAXS]; }Mesaj; #define PLUS (sizeof(int)) ...
-6
votes
1answer
52 views

How to write a method that parses a decimal number into a binary number as a string [closed]

I have no clue how to start except I have my header. public static String convertDecimalToBinary(int value) That is all
2
votes
1answer
37 views

javascript Number constructor strange behaviour

Converting string to number produces incremented value: var n = '9999999999999999'; console.log(n); // -> 9999999999999999 var nn = Number(n) console.log(nn); // -> 10000000000000000 How to ...
0
votes
0answers
75 views

Implementing is_convertible trait for function and array types

I have (thanks to @Xeo) a relatively simple is_convertible implementation: template<typename From, typename To> struct is_convertible { private: static void foo(To); template<typename ...
1
vote
2answers
55 views

converting std::string to int using sstream

I'm trying to convert a string of an arbitrary length to an int but so far it works only for strings of limited length. Code so far: long long convertToInt (std::string x){ long long number; ...
-2
votes
0answers
12 views

Adding to a BST gives conversion error [closed]

When utilizing the following the code, we receive an error that states actual argument int cannot be converted to Flight by method invocation conversion Any thoughts on what this could mean? As far as ...
8
votes
2answers
293 views

C++ 'overloading' the if() statement

Is it possible to change the behavior of if() so that: class Foo { int x; }; Foo foo; if(foo) only proceeds if the value of x is something other than zero? or... Would an explicit ...

1 2 3 4 5 41