What is conversion constructor?

Answers were Sorted based on User's Feedback



What is conversion constructor?..

Answer / swarna sekhar dhar

A constructor that can be called with a single argument is
used for conversions from the type of the argument to the
class type. Such a constructor is called a conversion
constructor. Consider the following example:
/ spec1_conversion_constructors.cpp
class Point
{
public:
Point();
Point( int );
//...
};

int main()
{
}
Sometimes a conversion is required but no conversion
constructor exists in the class. These conversions cannot be
performed by constructors. The compiler does not look for
intermediate types through which to perform the conversion.
For example, suppose a conversion exists from type Point to
type Rect and a conversion exists from type int to type
Point. The compiler does not supply a conversion from type
int to type Rect by constructing an intermediate object of
type Point.

Is This Answer Correct ?    16 Yes 1 No

What is conversion constructor?..

Answer / sachin mahajan

This is related to typecasting of user defined datatypes ie
Convertion of one class object to other class object.
Ex
I want to type cast REAL class object to COMPLEX Class object
Both REAL class and COMPLEX Class are user defined.

COMPLEX objComplex(6,3); //6 is real and 3 is imagnary
REAL objReal(5);
objComplex=objReal;
//end result of the above statement should be that
objComplex //should have 5 as real part and 0 as imaginary
//There are two solutions to it
//a)write conversion constuctor
//b)Overload assignment operator
// (a) for this add this in the COMPLEX Class
COMPLEX :: COMPLEX(REAL r)
{
real=r.value; // value is the only data member of REAL class
imag=0;
}





Is This Answer Correct ?    14 Yes 2 No

Post New Answer

More C++ General Interview Questions

Which sort does c++ use?

0 Answers  


Do you know about C++ 11 standard?

0 Answers   Agilent, ZS Associates,


Is c++ used anymore?

0 Answers  


What are destructors?

0 Answers  


What are the steps in the development cycle?

0 Answers  






How do you print a string on the printer?

0 Answers  


Write a program in c++ to print the numbers from n to n2 except 5 and its multiples

0 Answers   Cankaya University,


What is an adaptor class or Wrapper class?

1 Answers  


How do you declare A pointer to a function which receives nothing and returns nothing

0 Answers  


What is an ABC: an "Abstract Base Class"?

1 Answers  


Explain virtual class and friend class.

0 Answers  


What is class and structure in c++?

0 Answers  


Categories