Home  >  Article  >  Backend Development  >  Detailed explanation of C++ friend functions: How to use friend functions in template classes?

Detailed explanation of C++ friend functions: How to use friend functions in template classes?

王林
王林Original
2024-04-29 09:45:02762browse

In C, a friend function can access the private members of a class without becoming a member function of the class. In a template class, the declaration of a friend function is similar to the declaration in a normal class and must be declared outside the class definition. For example, to declare the friend function printValue in the template class MyClass, you need to declare the function outside the class definition using the friend keyword. A friend function can only access members of the class in which it is declared a friend.

C++ 友元函数详解:友元函数在模板类中的使用?

C Detailed explanation of friend functions: use in template classes

Introduction

A friend function is a special type of function in C that is allowed to access private members of a class without becoming a member function of the class. Friend functions are useful in certain situations, such as when data or functionality needs to be shared across class boundaries.

Friend functions in template classes

Declaring friend functions in a template class is very similar to that in a normal class. The following example shows how to declare a friend function printValue in template class MyClass:

template <typename T>
class MyClass {
public:
  T value;

  friend void printValue(const MyClass<T>& obj) {
    std::cout << "Value: " << obj.value << std::endl;
  }
};

Using friend functions

To use a friend function, the function must be declared outside the definition of the class. You can use the friend keyword to specify a friend function, as shown below:

template <typename T>
void printValue(const MyClass<T>& obj);

Practical case

Suppose we have a Node Template class, which contains private data members value, and wants to declare a friend function display to display the value of the node.

template <typename T>
class Node {
public:
  T value;

  friend void display(const Node<T>& node) {
    std::cout << "Node Value: " << node.value << std::endl;
  }
};

When writing friend functions, you need to pay attention to the following points:

  • The function must be declared outside the definition of the class.
  • Function prototypes cannot have const or virtual modifiers.
  • A function can only access members of the class that declares it as a friend.

The above is the detailed content of Detailed explanation of C++ friend functions: How to use friend functions in template classes?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
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