what is the use of mutable key word
Answers were Sorted based on User's Feedback
Answer / ramakant
This keyword can only be applied to non-static and non-
const data members of a class. If a data member is declared
mutable, then it is legal to assign a value to this data
member from a const member function.
| Is This Answer Correct ? | 6 Yes | 0 No |
Answer / sanjay makwana
allow to constant function in member variable
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / muthuveera
Its allows the Constant function in member variable
| Is This Answer Correct ? | 0 Yes | 0 No |
what is virtual destructor
Program to check whether a word starts with a capital letter or not.
How many human genes are polymorphic?
What is late bound function call and early bound function call? Differentiate.
How to use CMutex, CSemaphore in VC++ MFC
Which keyword is written to use a variable declared in one class in the other class?
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the maximum number of concurrent threads that the InnoDB plug-in can create.
What is meant by multiple inheritance?
What is a class in oop?
What is the real time example of inheritance?
what is the main difference between sizeof() operator in c and c++
What is polymorphism in oops with example?