Why seem interrupt handlers as member functions to be impossible?
Answer / rohit sah
Interrupt handlers as member functions _are_ possible. But they must be static member functions. Static member functions don't make use of the implicit 'this' pointer required by normal member functions. The caller of the interrupt handler doesn't know anything about objects and 'this' pointers, so it can't pass a value of such a pointer.
| Is This Answer Correct ? | 0 Yes | 0 No |
Why is it called c++?
What are activex and ole?
Comment on assignment operator in c++.
Explain how would you handle a situation where you cannot call the destructor of a local explicitly?
What is problem with Runtime type identification?
Can a list of string be stored within a two dimensional array?
What is a sequence in c++?
What is ios flag in c++?
What is a c++ object?
What things would you remember while making an interface?
Define a conversion constructor?
Is c++ platform dependent?