Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
クラスには、これがあります:
friend Circle copy(const Circle &);
通常、参照によって何かを渡すには、変数名の前に & を使用しますが、この場合、変数名がありません...これは正確には何ですか?
関数宣言では、パラメーター名に言及する必要はありません。
関数定義の場合と同様に、パラメーター名が必要です
friend Circle copy(const Circle &rhs) { ..... }