what is static function
Answers were Sorted based on User's Feedback
Answer / anil bisht
Static member functions have a class scope and they do not
have access to the 'this' pointer of the class. When a
member is declared as static, a static member of class, it
has only one data for the entire class even though there are
many objects created for the class. The main usage of static
function is when the programmer wants to have a function
which is accessible even when the class is not instantiated.
| Is This Answer Correct ? | 19 Yes | 0 No |
Answer / aavesh yadav
Static functions are functions which can access only static
variables and local variables.It can be called by class
name bcoz it is specific for a class in which it is
defined,not for any specific object of that class.It can
not be inherited also.
| Is This Answer Correct ? | 7 Yes | 4 No |
What are destructors?
How a pointer differs from a reference?
How long will it take to learn programming?
What is a base class?
Give an example of run-time polymorphism/virtual functions.
Will the following program execute?
What does 7/9*9 equal ? a) 1 b) 0.08642 c) 0
What is c++ hash?
What are the difference between reference variables and pointers in C++?
Is linux written in c or c++?
What is c++ course?
Will this c++ program execute or not?