Describe the main characteristics of static functions?
Answer / 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 |
How to construct virtual constructor
6 Answers CIStems Software, Symphony,
What is this pointer in c++?
What is c++ redistributable?
What are friend functions in C++?
What is constant in c++ with example?
Of the numbers 12 23 9 28 which would be at the top of a properly implemented maxheap a) 28 b) 9 c) Any of them could be
How do I tokenize a string in c++?
How to defines the function in c++?
What is the role of static keyword for a class member variable?
State the difference between pre and post increment/decrement operations.
What does flush do?
What is a v-table?