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 |
What are stacks?
What is c++ prototype?
What is the fastest c++ compiler?
What are the stages in the development cycle?
Write a program in c++ to print the numbers from n to n2 except 5 and its multiples
Floating point representation and output seems to be compiler dependent?
What are arrays c++?
What happens when a function throws an exception that was not specified by an exception specification for this function?
Can you explain the term "resource acquisition is initialization?"
What does the linker do?
How is data hiding achieved in c++?
show that among any group of five (not necessary consecutive ) integers, there are two with the same remainder when divided by 4.