Tagged Questions

6
votes
4answers
2k views

What is the difference between static_cast and Implicit_cast?

What is implicit_cast? when should I prefer implicit_cast rather than static_cast?
5
votes
4answers
542 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] << ...
5
votes
1answer
262 views

Why can't I downcast pointer to members in template arguments?

If I make a pointer-to-base-member, I can convert it to a pointer-to-derived-member usually, but not when used within a template like Buzz below, where the first template argument influences the ...
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 ...
2
votes
2answers
549 views

C++, how implicit conversion/constructor are determined?

How does C++ determine implicit conversion/construction of objects few levels deep? for example: struct A {}; struct B: A {}; struct C { operator B() { return B(); } }; void f(A a) {} int ...
2
votes
2answers
549 views

C++ templates and ambiguity problem

I have a subset of a pointer class that look like: template <typename T> struct Pointer { Pointer(); Pointer(T *const x); Pointer(const Pointer &x); template ...
1
vote
4answers
1k views

Implicit casting Integer calculation to float in C++

Is there any compiler that has a directive or a parameter to cast integer calculation to float implicitly. For example: float f = (1/3)*5; cout << f; the "f" is "0", because calculation's ...
1
vote
5answers
418 views

Stopping an implicit cast on operator delete

My String class provides an operator char* overload to allow you to pass the string to C functions. Unfortunately a colleague of mine just inadvertently discovered a bug. He effectively had the ...
0
votes
2answers
148 views

Implicit Conversion

My program was:- #include < iostream.h> #include < conio.h> struct base { protected: void get() { cin>>a>>b; } public: base(int i=0, int ...
0
votes
8answers
975 views

C++ rely on implicit conversion to bool in conditions?

I found the following rule in a coding standards sheet : Do not rely on implicit conversion to bool in conditions. if (ptr) // wrong if (ptr != NULL) // ok How ...