When the design recommends static functions?
Answers were Sorted based on User's Feedback
Answer / manu
The design reccommends static functions when you need to
call the function even when the class is not instantiated.
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / aruna kumar samal
When you want to use the function inside the program , not
outside then dsign recomend to do so. This does not have a
this pointer.static function maynot be virtual.there will
not be same version of static and non static function.
| Is This Answer Correct ? | 0 Yes | 3 No |
Which software is used to run c++ program?
What is the hardest coding language to learn?
How would you use qsort() function to sort an array of structures?
What is data types c++?
Please explain the reference variable in c++?
Write any small program that will compile in "C" but not in "C++"
how to explain our contribution in the project?
What are the difference between reference variables and pointers in C++?
What is c++ runtime?
What is rtti in c++?
What are the manipulators in c++?
Can a program run without main in c++?