Interview Question
Created by admin on Sat, 17/11/2012 - 15:28
Question:
Describe the main characteristics of static functions.
Language:
Answer:
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.