active questions tagged type-conversion - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T07:43:16Zhttp://stackoverflow.com/feeds/tag/type-conversionhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1924850/convert-a-stored-md5-string-to-a-decimal-value-in-mysql1Convert a stored md5 string to a decimal value in MySQLCfreak2009-12-17T21:52:41Z2009-12-17T23:05:18Z
<p>I have a very large table in MySQL. I'm using a CHAR(32) field which contains an MD5 as a string of course. I'm running into an issue where I need to convert this to a decimal value using MySQL. A third party tool runs the query so writing code to do this isn't really an option.</p>
<p>MySQL does support storing hex values natively and converting them to integers. But it gets hung up converting it from a string. Here's what I've tried so far (md5_key is the name of my column)</p>
<p>First I just tried the UNHEX function but that returns a string so it gave me gooblygoop. I won't put that here. Next I tried the CAST function</p>
<pre><code>SELECT CAST( CONCAT('0x',md5_key) AS UNSIGNED ) FROM bigtable limit 1
</code></pre>
<p>Result = 0
Show warnings gives me: "Truncated incorrect INTEGER value: '0x000002dcc38af6f209e91518db3e79d3'"</p>
<p>BUT if I do:</p>
<pre><code>SELECT CAST( 0x000002dcc38af6f209e91518db3e79d3 AS UNSIGNED );
</code></pre>
<p>I get the correct decimal value. </p>
<p>So I guess what I need to know, is there a way to get MySQL to see that string as a hex value? (I also tried converting it to BINARY and then to the UNSIGNED but that didn't work either). </p>
<p>Thanks in advance!</p>
http://stackoverflow.com/questions/1921574/how-to-convert-datetime-to-a-number-in-mysql0How to convert DateTime to a number in MySQL?Jader Dias2009-12-17T12:51:47Z2009-12-17T13:02:26Z
<p>How can I get the total number of seconds since <code>'1970-01-01 00:00:01'</code> from a DateTime instance in MySQL?</p>
http://stackoverflow.com/questions/1854924/javaconvert-long-to-string0Java:Convert long to String?unknown (google)2009-12-06T09:58:06Z2009-12-11T14:14:17Z
<p>Hello friends,</p>
<p>I am absolutely new to Java and Blackberry development. I've started learning Java and Blackberry development. I just created sample BB app, which can allow to choose the date.</p>
<pre><code>DateField curDateFld = new DateField("Choose Date: ",
System.currentTimeMillis(), DateField.DATE | DateField.FIELD_LEFT);
</code></pre>
<p>After choosing the date, i need to convert that long value to String, so that i can easily store the date value somewhere in database.</p>
<pre><code>long date = curDateFld.getDate();
</code></pre>
<p>As i haven't found any link, could someone give me the link or idea how should i convert this long value to String? Also i want to convert then again back to long from String, i think for that i can use "long l = Long.parseLong("myStr");" ?</p>
http://stackoverflow.com/questions/1878873/efficiently-convert-a-long-string-to-long-in-java2Efficiently convert a long string to long in Javanewbie2009-12-10T05:52:46Z2009-12-10T06:18:27Z
<p>I've really a long sequence of characters such as 123222222222230000000000001. I want to convert this to a long. What is the most efficient way to do it in Java? </p>
<p>UPDATE: The max length of sequence is of 31 characters</p>
http://stackoverflow.com/questions/1866520/forcing-a-datatype-in-ms-access-make-table-query2Forcing a datatype in MS Access make table queryAlistair Knock2009-12-08T12:00:43Z2009-12-09T17:22:56Z
<p>I have a query in MS Access which creates a table from two subqueries. For two of the columns being created, I'm dividing one column from the first subquery into a column from the second subquery. </p>
<p>The datatype of the first column is a double; the datatype of the second column is decimal, with scale of 2, but I want the second column to be a double as well.</p>
<p>Is there a way to force the datatype when creating a table through a standard make-table Access query?</p>
http://stackoverflow.com/questions/1865031/why-wont-castdouble-work-on-ienumerableint2Why won't Cast<double>() work on IEnumerable<int>? [closed]dominic2009-12-08T06:36:56Z2009-12-08T13:23:41Z
<blockquote>
<p><strong>Possible Duplicates:</strong><br>
<a href="http://stackoverflow.com/questions/1684448/enumerable-castt-extension-method-fails-to-cast-from-int-to-long-why">Enumerable.Cast<T> extension method fails to cast from int to long, why ?</a><br>
<a href="http://stackoverflow.com/questions/445471/puzzling-enumerable-cast-invalidcastexception">Puzzling Enumerable.Cast InvalidCastException</a><br>
<a href="http://stackoverflow.com/questions/1775984/cast-convert-ienumerablet-to-ienumerableu">Cast/Convert IEnumerable<T> to IEnumerable<U> ?</a> </p>
</blockquote>
<p>I'm trying to convert an array of integers to an array of doubles (so I can pass it to a function that takes an array of doubles). </p>
<p>The most obvious solution (to me, at least) is to use the Cast extension function for IEnumerable, but it gives me an InvalidCastException, and I don't understand why. My workaround is to use Select instead, but I think Cast looks neater. </p>
<p>Could someone tell me why the Cast method isn't working?</p>
<p>Hopefully the code below illustrates my problem:</p>
<pre><code>namespace ConsoleApplication1
{
using System;
using System.Collections.Generic;
using System.Linq;
class Program
{
static void Main()
{
var intArray = new[] { 1, 2, 3, 4 };
PrintEnumerable(intArray, "intArray: ");
var doubleArrayWorks = intArray.Select(x => (double)x).ToArray();
PrintEnumerable(doubleArrayWorks, "doubleArrayWorks: ");
// Why does this fail??
var doubleArrayDoesntWork = intArray.Cast<double>().ToArray();
PrintEnumerable(doubleArrayDoesntWork, "doubleArrayDoesntWork: ");
// Pause
Console.ReadLine();
}
private static void PrintEnumerable<T>(
IEnumerable<T> toBePrinted, string msgPrefix)
{
Console.WriteLine(
msgPrefix + string.Join(
",", toBePrinted.Select(x => x.ToString()).ToArray()));
}
}
</code></pre>
<p>}</p>
http://stackoverflow.com/questions/1860783/strange-double-to-int-conversion-behavior-in-c1strange double to int conversion behavior in c++user9242009-12-07T15:41:54Z2009-12-07T19:18:52Z
<p>The following program shows the weird double to int conversion behavior I'm seeing in c++:</p>
<pre><code>#include <stdlib.h>
#include <stdio.h>
int main() {
double d = 33222.221;
printf("d = %9.9g\n",d);
d *= 1000;
int i = (int)d;
printf("d = %9.9g | i = %d\n",d,i);
return 0;
}
</code></pre>
<p>When I compile and run the program, I see:</p>
<pre><code>g++ test.cpp
./a.out
d = 33222.221
d = 33222221 | i = 33222220
</code></pre>
<p>Why is i not equal to 33222221?
The compiler version is GCC 4.3.0</p>
http://stackoverflow.com/questions/1827122/converting-an-integer-to-enum-in-postgresql1Converting an Integer to Enum in PostgreSQLBuschnicK2009-12-01T15:58:22Z2009-12-01T17:26:55Z
<p>I have created a custom data type enum like so:</p>
<p>create type "bnfunctionstype" as enum ( 'normal', 'library', 'import', 'thunk', 'adjustor_thunk' );</p>
<p>From an external data source I get integers in the range [0,4]. I'd like to convert these integers to their corresponding enum values. How can I do this? I'm using PostgreSQL 8.4.</p>
http://stackoverflow.com/questions/887943/cannot-convert-type-string-to-int-via-a-reference-conversion-boxing-convers0cannot convert type 'string' to 'int?' via a reference conversion, boxing conversion, unboxing conversion, wrapping conversion or null type conversionJuan Carlos Blanco Martínez2009-05-20T13:36:29Z2009-11-29T10:42:30Z
<p>Hi,</p>
<p>I'm going to try to make myself clearer. Why does C# accept the following:</p>
<pre><code>object o = "hello";
int? i = o as int?;
if (i == null) {
// o was not a boxed int
}
else {
// Can use i.Value to recover the original boxed value
}
</code></pre>
<p>and not</p>
<pre><code>String = "hello";
int? i = o as int?;
if (i == null) {
// o was not a boxed int
}
else {
// Can use i.Value to recover the original boxed value
}
</code></pre>
<p>I'm NOT trying to find a way to convert a string into an int. I already know how to reach it. I'm just wondering about the behaviour of the keyword as in C# </p>
<p>String inherits from System.Object, so why does the first conversion work but not the second one? </p>
http://stackoverflow.com/questions/1719501/how-do-i-convert-a-c-string-to-a-net-string1How do I convert a c++ string to a .NET String^ ?hora2009-11-12T02:24:02Z2009-11-19T16:14:44Z
<p>I've been trying to figure out how to convert a string to a String in Visual Studio 2005 with no luck.</p>
<p>Here is the relevant code:</p>
<pre><code>#include <string>
using namespace std;
#using <System.dll>
using namespace System;
string test = "a test string";
</code></pre>
<p>So I'm trying to convert test into a String^ to use inside other .NET classes, can anyone help me with this?</p>
http://stackoverflow.com/questions/1749820/convert-session-object-to-iorderedqueryablet0Convert Session Object to IOrderedQueryable<T>Jason N. Gaylord2009-11-17T15:53:38Z2009-11-17T16:54:35Z
<p>I need to convert a Session object to an IOrderedQueryable and came up blank. I've thought of creating a wrapper, but its not working properly. Basically, I am pulling a Linq query and would like to store it so that I don't have to pull it each time I visit. There are up to 7-10 parameters per user so it's not something that's great for caching.</p>
http://stackoverflow.com/questions/1744106/vb-net-conversion-problem-when-trying-to-convert-from-base-class-to-subclass-bc30VB.NET Conversion problem when trying to convert from base class to subclass (BC30311: "Value of type '<type1>' cannot be converted to '<type2>'")Shimmy2009-11-16T18:52:07Z2009-11-16T20:44:42Z
<p>Hello!
Please take a look at the following code:</p>
<pre><code>Public Sub Method(Of TEntity As EntityObject)(ByVal entity As TEntity)
If TypeOf entity Is Contact Then
Dim contact As Contact = entity 'Compile error'
Dim contact = DirectCast(entity, Contact) 'Compile error'
Dim contact = CType(entity, Contact) 'Compile error'
End If
End Sub
</code></pre>
<p>Any ideas?</p>
http://stackoverflow.com/questions/1719334/wpf-binding-with-explicit-conversion0WPF binding with explicit conversion.Tri Q2009-11-12T01:41:10Z2009-11-12T01:55:44Z
<p>Hello everyone,</p>
<p>My question may be a repeat of other conversion question but I feel mine is different.</p>
<p>Here goes... [simplified example].</p>
<pre><code>public class DataWrapper<T>
{
public T DataValue{ get; set; }
public DataWrapper(T value)
{
DataValue = value;
}
public static explicit operator DataWrapper<T> (T value)
{
return new DataWrapper<T>(value);
}
public static implicit operator T(DataWrapper<T> data)
{
return data.DataValue;
}
}
</code></pre>
<p>Now, in my ViewModel:</p>
<pre><code>public class ViewModel
{
public DataWrapper<string> FirstName { get;set; }
public DataWrapper<string> LastName { get; set; }
}
</code></pre>
<p>And in XAML:</p>
<pre><code><TextBlock Text="{Binding FirstName}" />
<TextBlock Text="{Binding LastName}" />
</code></pre>
<p>My question is, will this work? Will WPF binding call the <code>Implicit</code> and <code>Explicit</code> converter in my <code>DataWrapper<T></code> class instead of needing to implement a <code>IValueConverter</code> for each <code>TextBlock</code>.</p>
http://stackoverflow.com/questions/1710447/string-in-scientific-notation-c-to-double-conversion0String in scientific notation C++ to double conversionmiya2009-11-10T19:12:19Z2009-11-10T19:19:14Z
<p>Hi, I've got a database filled up with doubles like the following one: </p>
<pre><code>1.60000000000000000000000000000000000e+01
</code></pre>
<p>Does anybody know how to convert a number like that to a double in C++?</p>
<p>Is there a "standard" way to do this type of things? Or do I have to roll my own function?</p>
<p>Right now I'm doing sth like this:</p>
<pre><code>#include <string>
#include <sstream>
int main() {
std::string s("1.60000000000000000000000000000000000e+01");
std::istringstream iss(s);
double d;
iss >> d;
d += 10.303030;
std::cout << d << std::endl;
}
</code></pre>
<p>Thanks!</p>
http://stackoverflow.com/questions/1634992/linq-to-sql-int16-gets-converted-as-int32-in-sql-command2Linq to SQL Int16 Gets Converted as Int32 In SQL Commandboon2009-10-28T03:06:31Z2009-11-10T12:03:35Z
<p>With the method parameter</p>
<pre><code>Int16? id
</code></pre>
<p>And the Linq to SQL where clause</p>
<pre><code>where !id.HasValue || m.Id == id
</code></pre>
<p>The resulting command text for the condition in the data context is</p>
<p>From the visualizer:</p>
<pre><code>SELECT [t0].[Id], [t0].[Name], [t0].[IsActive]
FROM [Model] AS [t0]
WHERE (CONVERT(Int,[t0].[Id])) = @p0
-------------------------------
@p0 [Int32]: 5
</code></pre>
<p>My mapped class has the Id as an Int16 and the database itself has the column type as a smallint, so why does the behind the scenes sql think the parameter is an integer (Int32) and not a smallint (Int16)?</p>
<p><hr /></p>
<p>Column mapping:</p>
<pre><code> [Column(IsPrimaryKey = true, DbType="SmallInt NOT NULL", CanBeNull=false)]
public Int16 Id { get; set; }
</code></pre>
http://stackoverflow.com/questions/1676011/cast-function-for-hibernate0Cast function for HibernateTiger2009-11-04T19:22:12Z2009-11-04T19:30:02Z
<p>Hi, all</p>
<p>I have tried to cast to float numbers from string in the database fields to compare with another numbers. The field in the database was String type. I have tried to use BETWEEN criteria using cast() as " cast(field, float) BETWEEN 1.003 AND 100.00)" in the where statement. however, it does not help.</p>
<p>however, when I tried to execute the regular query directly to Database without Hibernate, it works fine as "SELECT * FROM table WHERE cast(field as float) BETWEEN 1.003 AND 100.00"</p>
<p>I have tried ".. WHERE cast(field as float) > 1.003 AND cast(field as float) < 100", however it does not work on Hibernate either.</p>
<p>I found several blogs or forms, but it does not help. </p>
<p><a href="https://forum.hibernate.org/viewtopic.php?p=2399159" rel="nofollow">https://forum.hibernate.org/viewtopic.php?p=2399159</a></p>
<p>Do you have any idea what was wrong or any opinion ? </p>
<p>I will appreciate about that if you give some directions.</p>
<p>Thanks</p>
<p>tiger</p>
http://stackoverflow.com/questions/1652396/c-conversion-statements4C++ conversion statementsSMART_n2009-10-30T21:23:15Z2009-10-30T22:10:48Z
<p>What is the difference between</p>
<pre><code>(type)value
</code></pre>
<p>and</p>
<pre><code>type(value)
</code></pre>
<p>in C++?</p>
http://stackoverflow.com/questions/1275681/groovy-type-conversion0Groovy type conversionDon2009-08-14T02:02:54Z2009-10-26T11:46:16Z
<p>Hi,</p>
<p>In Groovy you can do surprising type conversions using either the <code>as</code> operator or the <code>asType</code> method. Examples include</p>
<pre><code>Short s = new Integer(6) as Short
List collection = new HashSet().asType(List)
</code></pre>
<p>I'm surprised that I can convert from an Integer to a Short and from a Set to a List, because there is no "is a" relationship between these types, although they do share a common ancestor.</p>
<p>For example, the following code is equivalent to the Integer/Short example in terms of the
relationship between the types involved in the conversion</p>
<pre><code>class Parent {}
class Child1 extends Parent {}
Class Child2 extends Parent {}
def c = new Child1() as Child2
</code></pre>
<p>But of course this example fails. What exactly are the type conversion rules behind the <code>as</code> operator and the <code>asType</code> method?</p>
http://stackoverflow.com/questions/1603606/converting-an-int-representing-number-of-cents-to-money-1Converting an int representing number of cents to moneyChris McCall2009-10-21T21:01:54Z2009-10-21T21:14:40Z
<p>Like <a href="http://stackoverflow.com/questions/1335398/converting-integer-string-to-money-format">this question</a>, except T-SQL instead of php.</p>
<p>206275947 = 2062759.47</p>
<p>etc.</p>
<p>The problem I'm running into is that an attempt to SUM the values in this column is overflowing the integer datatype in SQL.</p>
<pre><code>SUM(CONVERT(money,[PaymentInCentsAmt]))
</code></pre>
<p>Is just tacking on ".00" to the end of the value. What obvious thing am I missing?</p>
http://stackoverflow.com/questions/468639/is-there-a-standalone-python-type-conversion-library0Is there a standalone Python type conversion library?Ali A2009-01-22T10:29:33Z2009-10-18T12:51:46Z
<p>Are there any standalone type conversion libraries?</p>
<p>I have a data storage system that only understands bytes/strings, but I can tag metadata such as the type to be converted to.</p>
<p>I could hack up some naive system of type converters, as every other application has done before me, or I could hopefully use a standalone library, except I can't find one. Odd for such a common activity.</p>
<p>Just to clarify, I will have something like:</p>
<p>('123', 'integer') and I want to get out 123</p>
http://stackoverflow.com/questions/1572705/how-to-convert-long-to-lpcwstr0How to convert long to LPCWSTR?vasek72009-10-15T14:26:28Z2009-10-15T14:55:35Z
<p>Hi, how can I convert long to LPCWSTR in C++? I need function similar to this one:</p>
<pre><code>LPCWSTR ToString(long num) {
wchar_t snum;
swprintf_s( &snum, 8, L"%l", num);
std::wstring wnum = snum;
return wnum.c_str();
}
</code></pre>
http://stackoverflow.com/questions/1565504/most-succinct-way-to-convert-listbox-items-to-a-generic-list5Most succinct way to convert ListBox.items to a generic listjamiei2009-10-14T10:35:50Z2009-10-14T10:55:37Z
<p>I am using C# and targeting the .NET Framework 3.5. I'm looking for a small, succinct and efficient piece of code to copy all of the items in a <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.listbox.aspx" rel="nofollow">ListBox</a> to a <code>List<String></code> (Generic <a href="http://msdn.microsoft.com/en-us/library/6sh2ey19.aspx" rel="nofollow">List</a>).</p>
<p>At the moment I have something similar to the below code: </p>
<pre><code> List<String> myOtherList = new List<String>();
// Populate our colCriteria with the selected columns.
foreach (String strCol in lbMyListBox.Items)
{
myOtherList.Add(strCol);
}
</code></pre>
<p>Which works, of course, but I can't help but get the feeling that there must be a better way of doing this with some of the newer language features. I was thinking of something like the <a href="http://msdn.microsoft.com/en-us/library/73fe8cwf.aspx" rel="nofollow">List.ConvertAll</a> method but this only applies to Generic Lists and not <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.listbox.objectcollection.aspx" rel="nofollow">ListBox.ObjectCollection</a> collections.</p>
http://stackoverflow.com/questions/1538633/confusing-type-conversion-2-bytes-to-double0Confusing type conversion - 2 Bytes to DoubleChad S2009-10-08T15:44:38Z2009-10-08T20:06:18Z
<p>I was recently asked to take over a project in which waveform data is sampled from a power converter and sent to an intelligent agent where calculations are done and the appropriate actions are taken based on the results. </p>
<p>The following (java)snippet is what the previous coder used to convert the byte array into an array of doubles: </p>
<pre><code> LSB = (0XFF & (int)ipPacket[index]);
double temp = LSB/256.0;
MSB = (byte)(0XFF & (byte)ipPacket[index+1]);
double output = (double)(MSB + temp);
ConvCurrentPhaseR[doubleArrayIndex] = (double)(output);
</code></pre>
<p>(Note: LSB is an integer and MSB is a byte)</p>
<p>I honestly have no idea how the previous coder came up with this conversion. It doesn't make any sense to me. Why divide LSB by 256? Even if the original data is a float (4 bytes) how are we getting a double (8 bytes) out of only 2 bytes? Could anyone possibly explain what is going on with this piece of code?</p>
<p>Thanks in advance for any help provided!</p>
http://stackoverflow.com/questions/1532969/fixing-older-program-database-text-encoding-and-incorrect-field-types1Fixing older program: database text encoding, and incorrect field types.Macha2009-10-07T17:11:59Z2009-10-07T17:34:15Z
<p>I'm currently again working on a program from when I was, umm... less capable. It has a number of problems:</p>
<ul>
<li>The database collation is <code>latin1_swedish_ci</code>. I would like to convert it to utf8. How would I do this?</li>
<li>The database has some fields that are boolean values stored as 0 or 1. However, the fields are <code>varchar</code>s instead of <code>bool</code>s. How can I convert these?</li>
</ul>
http://stackoverflow.com/questions/1494862/multiplying-long-values0Multiplying long values?Jonhnny Weslley2009-09-29T20:50:27Z2009-09-29T21:03:58Z
<pre><code>class Main {
public static void main (String[] args){
long value = 1024 * 1024 * 1024 * 80;
System.out.println(Long.MAX_VALUE);
System.out.println(value);
}
}
</code></pre>
<p>Output is:</p>
<pre>
9223372036854775807
0
</pre>
<p>It's correct if <code>long value = 1024 * 1024 * 1024 * 80L;</code>!</p>
http://stackoverflow.com/questions/1469155/why-is-implicit-conversion-allowed-from-superclass-to-subclass1Why is implicit conversion allowed from superclass to subclass?HC2009-09-24T00:01:19Z2009-09-26T23:51:09Z
<p>Can someone tell me why the line with "//Compiles" compiles, and why the line with "//Doesn't Compile" does not?</p>
<p>I don't understand why A would be implicitly convertible to B, not the other way round. </p>
<pre><code>public class SomeClass {
static public void Test() {
AClass a = new AClass();
BClass b = new BClass();
a = b; // Compiles
b = a; // Doesn't compile
}
}
public class AClass {
public void AMethod() {
Console.WriteLine("AMethod");
}
}
public class BClass : AClass {
public void BMethod() {
Console.WriteLine("BMethod");
}
}
</code></pre>
<p>thanks!</p>
http://stackoverflow.com/questions/1479673/automatic-type-conversion-with-castle-activerecord-properties0Automatic type conversion with Castle ActiveRecord properties.Alison R.2009-09-25T21:27:28Z2009-09-26T11:58:26Z
<p>I have a Castle ActiveRecord class with a DateTime property. I am importing data from a text file, and would love to be able to do something like this:</p>
<pre><code>string date_started = "09/25/2009";
MyClass myclass = new MyClass;
myclass.date_started = date_started;
</code></pre>
<p>On the final assignment, behind the scenes, it would ideally check the type of <code>date_started</code>, and if it is DateTime, do the assignment, otherwise do <code>Convert.ToDateTime(date_started)</code>.</p>
<p>I can't override accessors <a href="http://weblogs.asp.net/slivingstone/archive/2004/08/27/221368.aspx" rel="nofollow">[*]</a>, and implicit operators only work when converting to or from the containing class. I tried extending DateTime with an implicit operator conversion, but found out it was sealed. Now I am a very unhappy dynamic programmer stuck in a statically-typed world.</p>
<p>I could of course do the check "manually," but I am instantiating many different objects with many properties, and was hoping to be able to loop over them (using reflection), without having to give specific properties special treatment. I could define my own custom accessors, but that again requires special treatment at assignment, since they need to be used like methods (<code>setX(val)</code>) and not properties (<code>X = val</code>).</p>
<p>Can C# (2.0) or Castle ActiveRecord offer me any clean way to get a String -> DateTime conversion in the background?</p>
http://stackoverflow.com/questions/1464837/whats-the-difference-between-tostring-and-asastring-in-specman1What's the difference between to_string() and as_a(string) in specman?Nathan Fellman2009-09-23T09:01:55Z2009-09-23T10:02:42Z
<p>In Specman I can convert a variable to a string using either:</p>
<pre><code>x.to_string();
</code></pre>
<p>or</p>
<pre><code>x.as_a(string);
</code></pre>
<p>Is there any difference between the two? If not, why does Specman provide both?</p>
http://stackoverflow.com/questions/1128637/using-typedescriptor-in-place-of-tryparse0Using TypeDescriptor in place of TryParsevdh_ant2009-07-14T23:26:34Z2009-09-22T17:00:03Z
<p>Hi Guys </p>
<p>I am trying to replicate TryParse for generic types and thought that TypeDescriptor might give me what I am after. So I came up with the following test case but it is failing, just wondering if anyone knows where I am going wrong.</p>
<pre><code> [TestMethod]
public void Test()
{
string value = "Test";
Guid resultValue;
var result = this.TryConvert(value, out resultValue);
}
public bool TryConvert<T>(string value, out T resultValue)
{
var converter = System.ComponentModel.TypeDescriptor.GetConverter(typeof(T));
if (converter.IsValid(value))
{
resultValue = (T)converter.ConvertFrom(value);
return true;
}
resultValue = default(T);
return false;
}
</code></pre>
<p>Note, I don't want to use a try catch block. </p>
<p>Cheers
Anthony </p>
http://stackoverflow.com/questions/1443870/c-difference-between-automatic-type-conversion-to-stdstring-and-char4C++ difference between automatic type conversion to std::string and char*Paul Stephenson2009-09-18T11:07:48Z2009-09-21T14:46:19Z
<p>As a learning exercise, I have been looking at how automatic type conversion works in C++. I <em>know</em> that automatic type conversion should generally be avoided, but I'd like to increase my knowledge of C++ by understanding how it works anyway.</p>
<p>I have created a <code>StdStringConverter</code> class that can be automatically converted to a <code>std::string</code>, but the compiler (g++ 4.3.4 on Debian) seems not to do the conversion when the object is compared against a real <code>std::string</code> (please ignore the lack of passing-by-reference and unnecessary creation of temporary objects):</p>
<pre><code>#include <string>
class StdStringConverter
{
public:
explicit StdStringConverter(std::string name) : m_name(name) {}
operator const std::string () const { return m_name; }
private:
std::string m_name;
};
int main()
{
StdStringConverter converter(std::string("Me"));
const std::string name = "Me";
// Next line causes compiler error:
// no match for 'operator==' in 'converter == name'
return (converter == name) ? 0 : 1;
}
</code></pre>
<p>On the other hand, if I change it slightly to a <code>CStringConverter</code> class, the automatic conversion <em>does</em> take place, although comparing <code>char</code> pointers probably isn't what I intended:</p>
<pre><code>#include <string>
class CStringConverter
{
public:
explicit CStringConverter(std::string name) : m_name(name) {}
operator const char* () const { return m_name.c_str(); }
private:
std::string m_name;
};
int main()
{
CStringConverter converter(std::string("Me"));
const char* name = "Me";
// Next line compiles fine, but they are not equal because the
// pointers don't match.
return (converter == name) ? 0 : 1;
}
</code></pre>
<p>Is there something special about the difference between a <code>std::string</code> and a <code>char*</code> in this context that makes the compiler not treat them the same?</p>