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
Are polymorphisms mutations?
officer say me - i am offered to a smoking , then what can you say
Why do while loop is used?
What language is oop?
What are the components of marker interface?
What is the example of polymorphism?
What causes polymorphism?
What is the main feature of oop?
Can bst contain duplicates?
What is difference between pop and oop?
What is oops?what is its use in software engineering?
Why is oop better than procedural?
Why do we use encapsulation in oops?
Describe these concepts: Polymorphism, Inheritance and Abstraction.
What is use of overloading?