devxlogo

Checking If a Function Pointer is Valid

Checking If a Function Pointer is Valid

Question:
I am collecting a number of function pointers in C++ and before I call them I want to check to see if they have been set. I really want to avoid calling them if they aren’t valid. I have triedthe following “if func != Null { … ” but I get an error.

Answer:
First of all, there’s no ‘Null’ in C++. The constant NULL is all uppercase. However, it’s not a keyword so you have to #include a header file to make its definition visible to the compiler. The best way check for nullness is to compare the pointer (any type of pointer, including a pointer to member) to the literal zero:

if (pmf!=0)

See also  Why ChatGPT Is So Important Today
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist