Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Consider a type bar which has user-defined conversion operators to references of type bar:

struct bar
{
  operator bar & ();
  operator const bar & () const;
};

When would these conversions be applied? Moreover, what does it imply if these operators were deleted? Is there any interesting use of either feature?

The following program does not appear to apply either conversion:

#include <iostream>

struct bar
{
  operator bar & ()
  {
    std::cout << "operator bar &()" << std::endl;
    return *this;
  }

  operator const bar & () const
  {
    std::cout << "operator const bar &() const" << std::endl;
    return *this;
  }
};

void foo(bar x)
{
}

int main()
{
  bar x;

  bar y = x;         // copy, no conversion

  y = x;             // assignment, no conversion

  foo(x);            // copy, no conversion

  y = (bar&)x;       // no output

  y = (const bar&)x; // no output

  return 0;
}
share|improve this question

3 Answers

up vote 9 down vote accepted

C++11 ยง12.3.2

A conversion function is never used to convert a (possibly cv-qualified) object to the (possibly cv-qualified) same object type (or a reference to it), to a (possibly cv-qualified) base class of that type (or a reference to it), or to (possibly cv-qualified) void

share|improve this answer
It would look that a compiler could emit a useful warning here then. – Matthieu M. Dec 2 '11 at 7:16
1  
Thanks. Any idea why I'm allowed to define such functions if they can never be used? – Jared Hoberock Dec 2 '11 at 18:23

The feature that you are allowed to define a conversion function from a type to itself, but that the conversion function is never used, can be a useful feature in template programming, where two type parameters may or may not refer to the same type, depending on the instantiation. Some code of mine relies on this feature. It saves having to provide specializations for cases where two or more of the type parameters end up referring to the same type.

share|improve this answer

I can't see any reason why it would ever be called. The conversion functions are called to... convert. If you already have the right type, there is absolutely no reason to add a conversion operation before the copy.

share|improve this answer
Maybe: struct T { operator T&() const; }; T ct = T(), &r1 = ct, &r2 = T(); – curiousguy Dec 2 '11 at 22:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.