Answer Posted / mms zubeir
The above answers are correct. I would like to add some
details to those.
1. const_cast:- is used to cast away the constness of a
variable.
2. static_cast:- is used to cast between two types with the
available static information about the variable. It doesn't
know anything about the run time information. Additionally,
it knows the type and access previledges of the
variables/objects involved in the casting. For example, we
cannot cast a private base.
3. reinterpret_cast:- is used to cast between any pointer
types and the types need not be related. The developer
needs to take care of the correct types to be casted.
4. dynamic_cast:- is used to cast between polymorphic types
only. It allows downcasting and casting between siblings as
well. If the cast fails, it returns a 0/NULL instead of the
pointer to the resultant object incase of success.
| Is This Answer Correct ? | 6 Yes | 4 No |
Post New Answer View All Answers
hi, this is raju,iam studying b.tech 2nd year,iam want know about group1 and group2 details, and we can studying without going to any instutions? please help me.
Where You Can Use Interface in your Project
What is inheritance and how many types of inheritance?
What is abstraction in oop?
officer say me - i am offered to a smoking , then what can you say
What is variable example?
when to use 'mutable' keyword and when to use 'const cast' in c++
Write a program to implement OOPS concepts such as inheritance, polymorphism, friend function, operator overloading?
IS IT NECESSARY TO INITIALIZE VARIABLE? WHAT IF THE INSTANCE VARIABLE IS DECLARED final ? IS IT NECESSARY TO INITIALIZE THE final VARIABLE AT THE TIME OF THEIR DECLARATION?
Why is oop useful?
How oops is better than procedural?
Can bst contain duplicates?
What is abstraction and encapsulation?
What is pointer in oop?
What is polymorphism explain its types?