首頁 > 問答 > 主體
#include <iostream> #include <vector> #include <string> using namespace std; //struct X { // friend void f() {}//这里就没问题 //}; int main() { struct X { friend void f() {}//error C2689: “f”: 不能在局部类中定义友元函数 }; }
伊谢尔伦2017-04-17 12:07:57
C,C++函式不可以在函式內部定義函式。
巴扎黑2017-04-17 12:07:57
局部類的作用域已經很局限了,你覺得有申明友元的必要么?為什麼會有這種需求?