Home > Backend Development > C++ > body text

Detailed explanation of C++ friend functions: How to call friend functions?

WBOY
Release: 2024-04-28 21:57:02
Original
282 people have browsed it

Friend functions allow cross-class access to private or protected members. The syntax is: class ClassName {protected: // Private or protected members}; friend declares a friend function;. To call a friend function, use the dot operator and a class instance: obj.value = 10; printValue(obj);. In the actual case, the friend function is used to compare the length of two strings and accesses the private member length().

C++ 友元函数详解:如何调用友元函数?

Detailed explanation of C friend function: in-depth understanding and calling method

A friend function is a special type of function in C that can access another Private and protected members of the class. This is useful when you need to access data across classes or implement special functionality.

The syntax of friend function

The syntax of friend function is as follows:

class ClassName {
protected:
  // 私有或受保护成员
};

friend 声明友元函数;
Copy after login

For example:

class MyClass {
protected:
  int value;
};

friend void printValue(MyClass&); // 声明友元函数
Copy after login

Call friend function

To call a friend function, you can use the dot operator (.) and a class instance:

MyClass obj;
obj.value = 10; // 访问私有成员

printValue(obj); // 调用友元函数
Copy after login

Practical case

The following is a practical case using a friend function:

// 友元函数用于比较两个字符串的长度
bool compareStringLength(const string& s1, const string& s2) {
  return s1.length() > s2.length();
}

// 测试友元函数
int main() {
  string str1 = "Hello";
  string str2 = "World";

  // 使用友元函数比较字符串长度
  if (compareStringLength(str1, str2)) {
    cout << "str1 is longer than str2" << endl;
  } else {
    cout << "str2 is longer than str1" << endl;
  }

  return 0;
}
Copy after login

In this example, the compareStringLength function is a friend function that can access the private member length() of the string class.

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

Related labels:
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!