You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to
This code (below) is copied from another website. I'd like to know the name of the technique of creating operators by the mechanism: A::operator B() so that I can research this independently. What is the name of this methodology for creating the member function of struct A?
Thank you,
Paul
#include <iostream>
struct B;
struct A {
operator B();
};