Home > Backend Development > C++ > body text

## Can You Get Function Pointers for Built-in C Operators?

DDD
Release: 2024-10-25 10:20:30
Original
576 people have browsed it

## Can You Get Function Pointers for Built-in C   Operators?

Is it Possible to Get the Function Pointer of a Built-in Standard Operator?

Introduction

Function pointers provide a way to refer to specific operator functions. However, for built-in standard operators, this approach may not be straightforward. This article delves into the reasons behind this limitation and explores alternative solutions to achieve similar functionality.

Why Function Pointers Aren't Available for Built-in Operators

According to the C Standard (13.6/1), built-in operators are not regular operator functions and thus cannot have function pointers pointing to them. They solely participate in overload resolution without serving any other purpose.

Alternative: Using Function Objects

To overcome this limitation, the C Standard introduces function objects, which provide an analogous functionality to built-in operators through templated objects. For instance, for comparisons, function objects like equal_to, greater, and less_equal are defined. These objects can be used as function pointer arguments.

Example

In the code snippet provided, the goal is to compare two integers within a template class. Using the function objects technique, it can be achieved as follows:

<code class="cpp">class MyAction {
  bool operator()() {
    if (fnCompare_(arg0_, arg1_)) {
      // do this
    } else {
      // do s.th. else
    }
  }
};</code>
Copy after login

Here, fnCompare_ can be a function object like std::equal_to to perform the comparison.

Standard Class Type Operators

In addition to function objects, standard library operators can also be used as function pointers. However, the respective instance of the template must be referenced. For example:

<code class="cpp">std::basic_string<char> a("test"), b("test2");
std::cout << test_function<std::basic_string<char>>(a, b, &std::operator+);</code>
Copy after login

Conclusion

While function pointers are not directly available for built-in standard operators, the alternative solutions provided by function objects and standard class type operators allow for equivalent functionality. These alternatives enable the use of specific standard operators as function pointers, addressing the limitation presented by built-in operators.

The above is the detailed content of ## Can You Get Function Pointers for Built-in C Operators?. 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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!