Tagged Questions

29
votes
4answers
2k views

How `is_base_of` works?

Why the following code works? typedef char (&yes)[1]; typedef char (&no)[2]; template <typename B, typename D> struct Host { operator B*() const; operator D*(); }; template ...
12
votes
3answers
147 views

Should this compile? Overload resolution and implicit conversions

This example seems to compile with VC10 and gcc (though my version of gcc is very old). EDIT: R. Martinho Fernandez tried this on gcc 4.7 and the behaviour is still the same. struct Base { ...
12
votes
2answers
205 views

Why is the address of this volatile variable always at 1?

I wanted to inspect the address of my variable volatile int clock; cout << &clock; But it always says that x is at address 1. Am i doing something wrong??
11
votes
2answers
330 views

delete cout; delete cin; do not give compilation error - a flaw in the Standard library?

Will the following give a compilation error? delete cout; delete cin; The answer is : No. It is a flaw in the implementation of stream classes from the Standard library. They have the following ...
11
votes
3answers
184 views

Pointer to a member function in an inaccessible base

The compilation of the next example : class A { public: void foo() { } }; class B : private A { public: using A::foo; }; int main() { typedef void (B::*mf)(); mf func ...
9
votes
3answers
260 views

Does an observable difference exist using `unsigned long` and `unsigned int` in C (or C++) when both are 32 bits wide?

I'm using an MPC56XX (embedded systems) with a compiler for which an int and a long are both 32 bits wide. In a required software package we had the following definitions for 32-bit wide types: ...
9
votes
5answers
423 views

Overload resolution failure when streaming object via implicit conversion to string

Disclaimer: I know that implicit conversion to string should be avoided, and that the proper approach would be an op<< overload for Person. Consider the following code: #include ...
9
votes
2answers
219 views

No implicit conversion in overloaded operator

d1 + 4 works but 4 + d1 doesn't even though 4 can be converted implicitly to a GMan. Why aren't they equivalent? struct GMan { int a, b; GMan() : a(), b() {} GMan(int _a) : a(_a), b() {} ...
7
votes
2answers
112 views

Why is the compiler choosing this template function over an overloaded non-template function?

Using VC++ 2010, given the following: class Base { }; class Derived : public Base { }; template<class T> void foo(T& t); // A void foo(Base& base); // B Derived d; ...
7
votes
3answers
84 views

Problems with constructor resolution order

Consider the following constructors for T: struct T { T(const bool) { std::cout << "T(const bool)" << endl; } T(const std::string&) { std::cout << "T(const ...
7
votes
4answers
408 views

Non-const copy constructor and implicit conversions on return value

Consider the following C++ code: struct B { }; struct A { A(int); A(A&); // missing const is intentional A(B); operator B(); }; A f() { // return A(1); // ...
7
votes
2answers
286 views

Why const for implicit conversion?

After extensive reading of ISO/IEC 14882, Programming language – C++ I'm still unsure why const is needed for implicit conversion to a user-defined type with a single argument constructor like the ...
6
votes
1answer
198 views

Is this example of the use of the C++ 'explicit' keyword correct?

In a GoogleTechTalks video on Youtube, Bjarne Stroustrup talks about the upcoming C++0x standard. In the video he mentions the following example: #include <iostream> struct Sick { ...
6
votes
4answers
633 views

Why does std::string not provide a conversion to const char*?

This is more of a policy or a historical question. Why was it decided not to provide a const char * conversion for std::string? Were there a fear someone might do printf("%s", s) and believe it would ...
5
votes
2answers
98 views

Rules for determining the set of function type compatible with std::function<R(T1,T2)>?

Suppose if I have this, std::function<int(int,int)> fs; then how can I determine the set of functions (or function objects) which fs can be initialized with? Which of the folllowing is ...
5
votes
3answers
211 views

Function member pointer with private base

The following code yields a compile time error: 'base::print' : cannot access private member declared in class 'base_der' However, I have made the member public in the derived class. Why doesn't ...
5
votes
2answers
234 views

Implicit conversions with std::function [closed]

Possible Duplicates: Why can't my C++ compiler deduce template argument for boost function? Isn't the template argument (the signature) of std::function part of its type? I have ...
5
votes
6answers
1k views

C++ operator overloading and implicit conversion

I have a class that encapsulates some arithmetic, let's say fixed point calculations. I like the idea of overloading arithmetic operators, so I write the following: class CFixed { CFixed( int ); ...
5
votes
4answers
691 views

Why do implicit conversion member functions overloading work by return type, while it is not allowed for normal functions?

C++ does not allow polymorphism for methods based on their return type. However, when overloading an implicit conversion member function this seems possible. Does anyone know why? I thought operators ...
4
votes
3answers
90 views

Implicit conversion when overloading operators for template classes

I would like to know why implicit type conversion doesn't work with outside operator overloading on class templates. Here is the working, non-templated version: class foo { public: foo() = ...
4
votes
2answers
120 views

does an object lose its constness when an implicit conversion occurs?

I have done a little experiment and I don't understand the output ! class C { public: operator int() const { std::cout << "I'm const" << std::endl;} operator int(){ std::cout << ...
4
votes
2answers
215 views

C++ typecasting vs implicit constructor

I'm implementing a c++-class representing a fraction. Here goes my code. class Fraction { public: Fraction(char i); Fraction(int i); Fraction(short i); ...
4
votes
1answer
139 views

C++: how to check if all single argument constructors are explicit

Is there a program that can scan entire projects and report all constructors eligible for implicit conversion? Thanks!
4
votes
2answers
302 views

C++ template instantiation with shared_ptr to const T

Suppose I have a class template <typename T> class A { public: template <typename V> void f(std::tr1::shared_ptr<const std::vector<V> > v1, ...
4
votes
2answers
274 views

What's the difference between integer promotions and integer conversions in C++

Section 4.5 of the C++ standard (integer promotion) talks about specific cases of converting integral types to types with a higher rank. Section 4.7 of the C++ standard (integral conversions) ...
4
votes
4answers
466 views

Warnings or errors for C++ implicit conversion of primitives

I've done some heavy refactoring of some C++ code, and discovered numerous bugs arising from implicit conversions that I'm not aware of. Example struct A *a(); bool b() { return a(); } void ...
4
votes
2answers
356 views

When should you use direct initialization and when copy initialization?

Is it simply preference or are there specific instances where one is necessary over another? I'm refering to the following variants for initialization T t(e); // direct initialization T t = e; // ...
4
votes
4answers
579 views

const_cast vs static_cast

To add const to a non-const object, which is the prefered method? const_cast<T> or static_cast<T>. In a recent question, someone mentioned that they prefer to use static_cast, but I would ...
3
votes
1answer
52 views

Operator overloading and implicit conversion to bool in relation to safe bool idiom

I'm sure that some of my questions may have been asked before, so please let me know :). First, an example: #include <iostream> struct A { typedef void (A::*funcptr)(); operator ...
3
votes
3answers
93 views

Type(variable) vs (Type)variable [closed]

Possible Duplicate: What is the difference between (type)value and type(value)? I am mainly a C# developer and so do a lot of explicit casting using syntax like: (type)variable, with ...
3
votes
5answers
113 views

Will an lvalue to rvalue conversion happen?

C++ Standard (4/5) the lvalue-to-rvalue conversion is not done on the operand of the unary & operator. For example: int x; int *p = &x; In the above case, are p are &x both ...
3
votes
3answers
100 views

Disallow functionality automatically provided by C++ compilers

Scott Meyers in his book "Effective C++" says, To disallow functionality automatically provided by compilers, declare the corresponding member functions private and give no ...
3
votes
4answers
122 views

int to float conversion produces a warning?

It's surprising for me to see that even when the value can be converted, an int to float conversion always give a warning. Why is this? int i = 0; float f = 0; // warning here // I thought this was ...
3
votes
2answers
89 views

Passing an argument to a function that gets automatically converted to a pointer

Note: I am using the g++ compiler (which is I hear is pretty good and supposed to be pretty close to the standard). So, I think I've learned that passing a pointer-to-an-array or passing the actual ...
3
votes
3answers
194 views

Implicit conversion of vector<shared_ptr<Foo> > to vector<shared_ptr<const Foo> >

According to this page you can implicitly convert shared_ptr<Foo> to shared_ptr<const Foo>. That makes good sense. However, I run into an error when I try to convert a std::vector ...
3
votes
2answers
90 views

Beginner's Question on Type Casting

I was going to use math.h on my numbers in my random number generator. It seems that I can only use the math.h functions on doubles. So: I am trying to give "value" the value of "currentValue", or at ...
3
votes
2answers
256 views

Implicit conversion : const reference vs non-const reference vs non-reference

Consider this code, struct A {}; struct B { B(const A&) {} }; void f(B) { cout << "f()"<<endl; } void g(A &a) { cout << "g()" <<endl; f(a); //a is ...
3
votes
3answers
225 views

Implicit conversion not happening

The last question I asked was something I stumbled upon when trying to understanding another thing... that I also can't understand (not my day). This is quite a long question statement, but at least ...
3
votes
2answers
211 views

C++ implicit conversions and ambiguity in overloaded function call

I am facing the following problem: I have a class V (say a vector) from which I can produce two classes: CI and I (think of const_iterator and iterator). If I have a const V then I can only produce ...
3
votes
5answers
2k views

c++ unable to find operator via implicit conversion?

When writing a class to act as a wrapper around a heap-allocated object, I encountered a problem with implicit type conversion that can be reduced to this simple example. In the code below the ...
2
votes
2answers
100 views

Chaining implicit conversion operators

I've got a class which I need to implicitly convert to a few things, with intermediate values, e.g. struct outer { struct inner { operator T() { return T(); } }; operator inner() ...
2
votes
3answers
63 views

const qualification conversion

From (4.4/1 ) It reads An rvalue of type “pointer to cv1 T” can be converted to an rvalue of type “pointer to cv2 T” if “cv2 T” is more cv-qualified than “cv1 T.” I don't know where the ...
2
votes
2answers
90 views

Compiler optimization of implicit constructor conversion

In the following code, I expect A's constructor is called, followed by A's copy constructor. However, It turns out only constructor is get called. // MSVC++ 2008 class A { public: A(int i):m_i(i) ...
2
votes
3answers
147 views

Printing Stringstream Outputs Pointer

Rather than outputting the expected string of "Bar", the following code outputs what looks to be a pointer. #include <sstream> #include <iostream> int main() { std::stringstream ...
2
votes
5answers
117 views

What's happening in the background of a unsigned char to integer type cast?

I was getting some odd behaviour out of a switch block today, specifically I was reading a byte from a file and comparing it against certain hex values (text file encoding issue, no big deal). The ...
2
votes
2answers
131 views

Stopping function implicit conversion

I came across a strange situation today where I needed a function to not implicitly convert values. After some looking on google I found this http://www.devx.com/cplus/10MinuteSolution/37078/1954 ...
1
vote
3answers
422 views

Difference between implicit conversion and explicit conversion [closed]

Possible Duplicate: Implicit VS Explicit Conversion What is the difference between "implicit conversion" and "explicit conversion"? Is the difference different in Java and C++?
1
vote
3answers
377 views

Similar conversion in overloading wstring and wchar_t *

I have following code: inline bool match(const std::wstring & text1, const std::wstring & text2) { return match(text1.c_str(), text2.c_str()); } inline bool match(const std::wstring ...
1
vote
5answers
422 views

c++ implicit conversion rules

I am trying to understand the rules of c++ automatic and explicit conversions in regular or member function calls. I wrote the following code and it fails compilation: #include <iostream> ...
1
vote
5answers
593 views

What is the meaning of “operator bool() const” in C++

For example in airplaysdk: operator bool() const { return col!=0; } col is an int. How does operator bool() const work?

1 2