>  Q&A  >  본문

c++ - 为什么不能在局部类中定义友元函数,而全局类就可以?

#include <iostream>
#include <vector>
#include <string>
using namespace std;
//struct X {
//    friend void f() {}//这里就没问题
//};
int main()
{
    struct X {
        friend void f() {}//error C2689: “f”: 不能在局部类中定义友元函数
    };
}
阿神阿神2764일 전555

모든 응답(2)나는 대답할 것이다

  • 伊谢尔伦

    伊谢尔伦2017-04-17 12:07:57

    C,C++函数不可以在函数内部定义函数。

    회신하다
    0
  • 巴扎黑

    巴扎黑2017-04-17 12:07:57

    局部类的作用域已经很局限了,你觉得有申明友元的必要么?为什么会有这种需求?

    회신하다
    0
  • 취소회신하다