繁体   English   中英

C ++中的朋友功能出现问题

[英]issue with friend functions in c++

我用h文件一些朋友函数定义了以下类:

#include <iostream>
#include <math.h>

namespace mtm {
static bool compareIsBigger(double a, double b) {
    const double EPSILON = 1e-10;
    return fabs(a - b) < EPSILON ? false : a > b;
}

static bool areSame(double a, double b) {
   const double EPSILON = 1e-10;
   return fabs(a - b) < EPSILON;
}
class Security  {
private:
    char* name;
    double stockValue;
    int stockAmount;
    double* quarterAnalyse;
    void operator =(const Security&) = delete;
    static bool nameIsInCaps(const char* name);
public:
    //// *other functions not relevant*
    friend bool operator==(const Security& s1, const Security& s2);
    friend bool operator!=(const Security& s1, const Security& s2);
    friend bool operator>=(const Security& s1, const Security& s2);
    friend bool operator<(const Security& s1, const Security& s2);
    friend bool operator>(const Security& s1, const Security& s2);
    friend bool operator<=(const Security& s1, const Security& s2);
    friend bool operator>=(const Security& s1, const Security& s2);
};
}

然后,我已经在ac文件中实现了它们(当然包括标头):

#include "Security.h"
#include "exception.h"
#include <iostream>
#include <cstring>

using namespace mtm;

bool operator==(const Security &s1, const Security &s2) {
    if (areSame(s1.stockValue, s2.stockValue) && s1.stockAmount == s2.stockAmount
        && !strcmp(s1.name, s2.name))
        return true;
    return false;
}

bool operator!=(const Security &s1, const Security &s2) {
    if (!(s1 == s2))
        return true;
    return false;
}

bool operator<(const Security &s1, const Security &s2) {
    if (compareIsBigger(s1.stockValue, s2.stockValue))
        return true;
    if (areSame(s1.stockValue, s2.stockValue)) {
        if (s2.stockAmount > s1.stockAmount)
            return true;
        if (s2.stockAmount == s1.stockAmount) {
            if (strcmp(s2.name, s1.name) > 0)
                return true;
        }
    }
    return false;
}


bool operator>(const Security &s1, const Security &s2) {
    if (!(s1 < s2) && s1 != s2)
        return true;
    return false;
}


bool operator<=(const Security &s1, const Security &s2) {
    if (!(s1 > s2))
        return true;
    return false;
}

bool operator>=(const Security &s1, const Security &s2) {
    if (!(s1 < s2))
        return true;
    return false;
}

但是,对于每种实现,编译器都会抱怨这些功能无法访问私有部分!

这是为什么? 我已经将它们声明为朋友功能!
如果有问题,我正在使用Eclipse。

这些是有关此问题的编译结果:

Description Resource    Path    Location    Type
'char* mtm::Security::name' is private  Security.h  /MTM_HW4    line 32 C/C++ Problem
'double mtm::Security::stockValue' is private   Security.h  /MTM_HW4    line 33 C/C++ Problem
'int mtm::Security::stockAmount' is private Security.h  /MTM_HW4    line 34 C/C++ Problem
ambiguous overload for 'operator!=' (operand types are 'const mtm::Security' and 'const mtm::Security') Security.cpp    /MTM_HW4    line 183    C/C++ Problem
ambiguous overload for 'operator' (operand types are 'const mtm::Security' and 'const mtm::Security')  Security.cpp    /MTM_HW4    line 190    C/C++ Problem
within this context Security.cpp    /MTM_HW4    line 155    C/C++ Problem
within this context Security.cpp    /MTM_HW4    line 156    C/C++ Problem
within this context Security.cpp    /MTM_HW4    line 168    C/C++ Problem
within this context Security.cpp    /MTM_HW4    line 170    C/C++ Problem
within this context Security.cpp    /MTM_HW4    line 171    C/C++ Problem
within this context Security.cpp    /MTM_HW4    line 173    C/C++ Problem
within this context Security.cpp    /MTM_HW4    line 174    C/C++ Problem
bool mtm::operator!=(const mtm::Security&, const mtm::Security&)    Security.h  /MTM_HW4    line 60 C/C++ Problem
bool mtm::operator(const mtm::Security&, const mtm::Security&) Security.h  /MTM_HW4    line 63 C/C++ Problem
bool operator!=(const mtm::Security&, const mtm::Security&) Security.cpp    /MTM_HW4    line 161    C/C++ Problem
bool operator(const mtm::Security&, const mtm::Security&)  Security.cpp    /MTM_HW4    line 182    C/C++ Problem
candidates are: Security.cpp    /MTM_HW4    line 162    C/C++ Problem
candidates are: Security.cpp    /MTM_HW4    line 183    C/C++ Problem
candidates are: Security.cpp    /MTM_HW4    line 190    C/C++ Problem
candidates are: Security.cpp    /MTM_HW4    line 196    C/C++ Problem

您还需要在头文件的类外部声明运算符重载。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM