25
votes
6answers
8k views
When should static_cast, dynamic_cast and reinterpret_cast be used?
I am reasonably proficient in C++, but I do not have a lot of experience using the cast operators to convert pointers of one type to another. I am familiar with the risks and benefits of pointer …
21
votes
16answers
5k views
Is there a simple script to convert C++ enum to string?
Suppose we have some named enums:
enum MyEnum {
FOO,
BAR = 0x50
};
What I googled for is a script (any language) that scans all the headers in my project and generates a header with one …
20
votes
7answers
1k views
Implicit Type cast in C#
Hi
I have a question about the implicit type conversion
Why does this implicit type conversion work in C#? I've learned that implicit code usually don't work.
I have a code sample here about …
13
votes
13answers
9k views
Java: Best way of converting List<Integer> to List<String>
I have a Java list of integers, List<Integer> and I'd like to convert all the integer objects into strings, thus finishing up with a new List<String>.
Naturally, I could create a new List …
12
votes
14answers
884 views
Ever done a total rewrite of a large C++ application in C#?
I know Joel says to never do it, and I agree with this in most cases. I do think there are cases where it is justified.
We have a large C++ application (around 250,000 total lines of code) that uses …
12
votes
4answers
3k views
How can I convert List<object> to Hashtable in C#?
I have a list of objects, each containing an Id, Code and Description.
I need to convert this list into a Hashtable, using Description as the key and Id as the value.
This is so the Hashtable can …
11
votes
9answers
209 views
Is there a way to convert from a string to pure code in C++?
I know that its possible to read from a .txt file and then convert various parts of that into string, char, and int values, but is it possible to take a string and use it as real code in the program?
…
11
votes
8answers
1k views
C# Convert Integers into Written Numbers
Is there an efficient method of converting an integer into the written numbers for example:
String Written = IntegerToWritten(21);
would return "Twenty One"
Is there any way of doing this that …
10
votes
1answer
446 views
Curvilinear perspective: Convert 3D to 2D
Hi all,
I'm looking for the mathematical expression converting a 3D coordinate (x0,y0,z0) to a 2D (x1,y1) coordinate in a curvilinear perspective of radius R where the values of x1 and y1 are the …
10
votes
6answers
369 views
Problem converting from int to float
There is a strange behavior I cannot understand.
Agreed that float point number are approximations, so even operations that are obviously returning a number without decimal numbers can be approximated …
9
votes
5answers
1k views
How do I convert a git repository to mercurial?
I've been developing a java application using git as source code repository. I'd like to share the project with other java developers and hg seems to be most used by them.
My question is how do I …
9
votes
7answers
3k views
Best way to convert text files between character sets?
What is the fastest, easiest tool or method to convert text files between character sets?
Specifically, I need to convert from UTF-8 to ISO-8859-15 and vice versa.
Everything goes: one-liners in …
9
votes
7answers
2k views
Easy way for Crystal Reports to MS SQL Server Reporting Services conversion
Is there a way to easily convert Crystal Reports reports to Reporting Services RDL format?
We have quite a few reports that will be needing conversion soon.
I know about the manual process (which is …
8
votes
7answers
467 views
Why use !! when converting int to bool?
What can be a reason for converting an integer to a boolean in this way?
bool booleanValue = !!integerValue;
instead of just
bool booleanValue = integerValue;
All I know is that in VC++7 the …
8
votes
2answers
372 views
C# non-boxing conversion of generic enum to int?
Given a generic parameter TEnum which always will be an enum type, is there any way to cast from TEnum to int without boxing/unboxing?
See this example code. This will box/unbox the value …
