Tagged Questions
10
votes
4answers
448 views
Explanation of casting/conversion int/double in C#
I coded some calculation stuff (I copied below a really simplifed example of what I did) like CASE2 and got bad results. Refactored the code like CASE1 and worked fine. I know there is an implicit ...
5
votes
4answers
533 views
Implicit cast from char** to const char**
Why my compiler(GCC) doesnt implicitly cast from char** to const char**?
Thie following code:
#include <iostream>
void print(const char** thing) {
std::cout << thing[0] << ...
4
votes
5answers
1k views
Getting rid of error C2243
Is it possible to getting rid of error C2243?
class B {};
class D : protected B {};
D d;
B *p = &d; // conversion from 'D *' to 'B &' exists, but is inaccessible
I had this error in my ...
2
votes
2answers
209 views
Is possible to get automatic cast from user-defined type to std::string using cout?
As in the question, if I define a string operator in my class:
class Literal {
operator string const () {
return toStr ();
};
string toStr () const;
};
and then I use it:
Literal l1 ...
1
vote
1answer
103 views
How do i cast A to object to class A when B can typcast to A?
Basically i want to do this. aa causes a bad cast exception.
NOTE: o can be ANYTHING. It may not be B, it can be C, D, E, F etc. But this should work as long as o is a class that can typecast into A ...
0
votes
2answers
80 views
How to define cast and implicit cast operations for a Scala class of mine?
For example I'd like to have this to work the way to set jDName to "John Doe" and jDAge to 32:
case class Person(name : String, surname : String, age : Int)
val johnDoe = Person("John", "Doe", 32)
...
0
votes
4answers
160 views
Safe & Simple Access to Explicit Interface Members in C#
When I am working with explicit interface implementations in C#, it often becomes necessary to cast an object to one of its interfaces in order to access a member of that interface. Because of the ...
-1
votes
4answers
225 views
Will the c# compiler perform multiple implicit conversions to get from one type to another?
Let's say you have yourself a class like the following:
public sealed class StringToInt {
private string _myString;
private StringToInt(string value)
{
_myString = value;
...