Why can you not make a constructor as const?
Answers were Sorted based on User's Feedback
Answer / sumit kumar
what happens if we make a constructor as const
then object which is not fully constructed,
inside it you can not initialize the instance variable.
| Is This Answer Correct ? | 8 Yes | 3 No |
Answer / som shekhar
If the function is declared constant then you are not
intended to change the member variables of the class and if
you did the compiler throws an error.
In this case you can change the variable inside the const
function if the variable is declared as VOLATILE.
Similarly if you declare a variable as const then you cannot
change the value of the variable through its life time.
Now if you declared the constructor then you cannot
initialize the object.
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / som shekhar
Sorry the keyword is not volatile ,its mutable.
if the member varible of the class is declared as mutable
then you can change its value in a function which is
declared as constant.
| Is This Answer Correct ? | 4 Yes | 0 No |
How would you differentiate between a pre and post increment operators while overloading?
Write any small program that will compile in "C" but not in "C++"?
What is compilation?
Is c++ harder than java?
What is a dynamic binding in c++?
Which should be more useful: the protected and public virtuals?
Explain RAII (Resource Acquisition Is Initialization).
What is difference c and c++?
C is to C++ as 1 is to a) What the heck b) 2 c) 10
1. What does the following do: void afunction(int *x) { x=new int; *x=12; } int main() { int v=10; afunction(&v); cout<<v; } a) Outputs 12 b) Outputs 10 c) Outputs the address of v
List the types of polymorphism in c++?
Write a recursive program to calculate factorial in c++.