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 |
Write about the members that a derived class can add?
What is private public protected in c++?
Can you write a function similar to printf()?
Mention the ways in which parameterized can be invoked.
What is the use of namespace std in C++?
What are the data types in c++?
What is function overriding?
5. Can inline functions have a recursion?
how to connect with oracle 9i with server in socket program in c/c++
What do you understand by zombie objects in c++?
What is null and void pointer?
What is else syntax in c++?