Describe the main characteristics of static functions?
Answer Posted / atul shankhwar
The main characteristics of static functions include,
It is without the a this pointer,
It can't directly access the non-static members of its class
It can't be declared const, volatile or virtual.
It doesn't need to be invoked through an object of its class, although for convenience, it may.
Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explain storage qualifiers in c++.
Is java a c++?
Is c++ platform dependent?
What does ctime() do?
How will you call C functions from C ++ and vice-versa?
C is to C++ as 1 is to a) What the heck b) 2 c) 10
Differentiate between a pointer and a reference with respect to c++.
How many namespaces are there in c++?
Describe exception handling concept with an example?
Explain the problem with overriding functions
How can you quickly find the number of elements stored in a static array?
Why is c++ called oops?
What does the following code do: int c=0; cout< a) Undefined *Updated* b) 01 c) 00
Is it possible for a member function to use delete this?
an integer constant must have atleast one a) character b) digit c) decimal point