0

我有一个 GolfCourse 类头文件 gcourse.hh,我想为 >>operator 实现运算符重载。如何在文件 gcourse.cc 的标头之外执行此操作?也就是说,我需要哪些“单词”指向类本身,“GolfCourse::”对于函数来说还不够……?

gcourse.hh:
class GolfCourse {

public:
---
friend std::istream& operator>> (std::istream& in, GolfCourse& course);

gcourse.cc:
---implement operator>> here ---
4

1 回答 1

2

GolfCourse::不正确,因为operator >>不是 的成员GolfCourse。这是一个免费的功能。你只需要写:

std::istream& operator>> (std::istream& in, GolfCourse& course)
{
   //...
   return in;
}

friend仅当您private计划protectedGolfCourse. 当然,您可以在类定义中提供实现:

class GolfCourse {
public:
    friend std::istream& operator>> (std::istream& in, GolfCourse& course)
    {
       //...
       return in;
    }
};
于 2012-09-30T17:40:18.717 回答