what is static function

Answers were Sorted based on User's Feedback



what is static function..

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

what is static function..

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

Post New Answer

More C++ General Interview Questions

Is empty stack c++?

0 Answers  


What is stl containers in c++?

0 Answers  


Write a program in C++ for Fibonacci series

0 Answers   Axtria, ITC Indian Tobacco Company,


int *p = NULL; printf("%1d",p) ; what will be the output of this above code?

3 Answers   Microsoft,


What is Destructor in C++?

0 Answers  






what are the types of Member Functions?

0 Answers  


What do you mean by vtable and vptr in c++?

0 Answers  


Explain the scope resolution operator?

2 Answers  


What are static member functions?

0 Answers  


what is difference between internet and Internet?

12 Answers   College School Exams Tests, Microsoft, MIT, TCS,


What is c++ coding?

0 Answers  


Who created c++?

0 Answers  


Categories