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

What is the best free c++ compiler for windows?

0 Answers  


What is pair in c++?

0 Answers  


What is a smart pointer?

2 Answers  


Explain how functions are classified in C++ ?

0 Answers  


What is the difference between a constructor and a destructor in C++?

1 Answers  


What is wrapper class in c++?

0 Answers  


When to use “const” reference arguments in a function?

0 Answers  


Am pass the 10000 records to target in target I will take commit interval 15000 when I was stop the work flow what will happened

0 Answers  


How would you use the functions memcpy(), memset(), memmove()?

0 Answers  


Ask to write virtual base class code?

0 Answers   Satyam,


How to detect memory leaks in c++

1 Answers   Mphasis,


Can java be faster than c++?

0 Answers  


Categories