Home > Backend Development > C++ > How Do I Call Pointers to Member Functions in C ?

How Do I Call Pointers to Member Functions in C ?

Linda Hamilton
Release: 2024-12-16 04:53:17
Original
449 people have browsed it

How Do I Call Pointers to Member Functions in C  ?

Calling Pointer to Member Functions in C

In C , pointers to member functions provide a convenient way to dynamically invoke methods on objects. However, their syntax can be challenging.

Syntax for Calling Pointers to Member Functions

To call a pointer to a member function, the following syntax is used:

(object->*pointer_variable)(params)
Copy after login

where:

  • object is the instance on which the function is being called
  • *pointer_variable is the pointer to the member function
  • params are the parameters passed to the function

Syntax Example

Consider the following code snippet:

typedef void (Box::*HitTest) (int x, int y, int w, int h);

for (std::list<HitTest>::const_iterator i = hitTestList.begin(); i != hitTestList.end(); ++i)
{
    HitTest h = *i;
    (box->*h)(xPos, yPos, width, height);
}
Copy after login

In this example, a list of pointers to HitTest member functions is iterated over. Each pointer is fetched from the list and invoked by providing the box pointer as this.

Adding Member Functions to a List of Pointers

To add member functions to a list of pointers, the following syntax can be used:

list.push_back(&box->HitTest);
Copy after login

This code pushes the pointer to the HitTest member function of the box object into the list.

The above is the detailed content of How Do I Call Pointers to Member Functions in C ?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template