मराठी
महाराष्ट्र राज्य शिक्षण मंडळएचएससी विज्ञान (संगणक विज्ञान) इयत्ता १२ वी

Explain Any Two Types of Type Conversion in C++ with Example. - Computer Science 1

Advertisements
Advertisements

प्रश्न

 Explain any two types of type conversion in C++ with example. 

थोडक्यात उत्तर

उत्तर

 (i) Conversion from built-in type to class type
Basic to class type :
The constructor can be used for default type conversion from argument’s type to the constructor’s class type.
For e.g.
class time
{
int hr ;
int min ;
public :
______
time (int t) // constructor
{
hr = t / 60; //t in minutes
min = t % 60;
}
};
The following conversion statements can be used in a function. time T1; // object T1 is created.
int duration = 90;
T1 = duration // int to class type
After this conversion, the hr member of T1 will contain a value of 1 and min contain 30 means 1 hour and 30 minutes.
(ii) Conversion from one class to another class
One class to another class type :.
Use one-argument constructor or conversion function depends upon the defining conversion routine in source class or destination class.
For e.g.
obj A      =     obj B

    ↓                    ↓
Destination      source
Constructor is placed in the destination class and conversion function is placed in  source class.

shaalaa.com
C++ Programming
  या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
2018-2019 (February) Set 1
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×