what is a ststic variable and stiticfunction
briefly explain with exmple and in which case we use
Answers were Sorted based on User's Feedback
Answer / subhashish sen
When a variable is declared with static keyword,its called
as static variable,means it retains its value across
different function calls.Its basically used for counting no
of objects created for a class in C++ and its initialized to
0 by default.
When a function declared as static,its called as static
function.It can only operate on static variables.
| Is This Answer Correct ? | 3 Yes | 1 No |
Answer / zubeir
Static variable is the one allocated statically, meaning
that, it is allocated once in the program space and exists
till the program space is deallocated (the close of the
application).
Note:- Some people get confused between stack allocation
and static allocaion. Both are different terms.
A static function is again the same concept with static
variable allocation, but here the allocation is not just a
variable but a function's 'activation frame'. The
activation frame, for now, consider the function's
information required by the compiler to execute the
function which is stored internally.
| Is This Answer Correct ? | 1 Yes | 5 No |
Where You Can Use Interface in your Project
how many types of notations are in java
1 Answers National University of Modern Languages (NUML),
When is an object created and what is its lifetime?
Why is there no multiple inheritance?
Is abstract thinking intelligence?
Why we use classes in oop?
What is ambiguity in inheritance?
what is overloading and overriding?
WAP find square root of any number (without using sqrt() )?
what is the use of template classes in c++
i had specified the access specifier for abstarct class member like (pure virtual function) as private.But it can be accessed by the derived class.How the private member of one class is accessed by other class.if any body face this problem and found the solution plz reply to me.
What is virtual class and friend class?