1 2 3 4 5 6 7 8 9 10 11 12 13 14 | namespace xx { class Foo { friend void Bar(const &Foo); }; } int main() { xx::Foo foo; Bar(foo); } 有誰可以告訴我為什麼標準的定義這樣可以在main裡lookup到Bar? |
Direct link: https://paste.plurk.com/show/1643083
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | namespace xx { class Foo { friend void Bar(const &Foo); }; } int main() { xx::Foo foo; Bar(foo); } 有誰可以告訴我為什麼標準的定義這樣可以在main裡lookup到Bar? |