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 is pointer in c++ with example?
How do you remove an element from a set in c++?
When do we run a shell in the unix system?
What is the difference between map and hashmap in c++?
What is array in c++ example?
What is flush programming?
Write about the use of the virtual destructor?
can anybody please tell me how to write a program in c++,without using semicolon(;)
What are virtual functions and what is its use?
Can we specify variable field width in a scanf() format string? If possible how?
What do you mean by internal linking and external linking in c++?
What does floor mean in c++?