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 |
Explain the isa and hasa class relationships.
How do you initialize a class member, class x { const int i; };
Why is c++ still best?
What is an adaptor class or wrapper class in c++?
Can constructor be private in c++?
What are all predefined data types in c++?
What is std :: flush?
What are files in c++?
What is the two main roles of operating system?
Explain about templates of C++.
How many keywords are used in c++?
What is the rule of three?