作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个保存学生数据的类(class)。在存储之前,将首先检查 ID 是否有效。在重载运算符 >> 时,我调用了 validate_id 函数。我已经将它声明为 friend ,但是在编译时,它说 'validate_id was not declared in scope
。是因为它是静态函数吗?
#include <iostream>
#include <string>
#include <locale>
#include <utility>
#include <algorithm>
#include <stdexcept>
typedef std::pair<std::string, std::string> Name;
class Student {
public:
Student(){};
bool operator <( const Student& rhs ) const {
return ( id_ < rhs.id_ );
}
friend std::ostream& operator <<(std::ostream& os, const Student& s);
friend std::istream& operator >>(std::istream& is, Student& s);
private:
std::string id_;
Name name_;
static bool validate_id(const std::string& id){
if(id.length() != 9 && id[0] != 'a')
return false;
for(size_t i = 1, sz = id.length(); i < sz; i++){
if(!isdigit(id[i]))
return false;
}
return true;
}
};
std::ostream& operator <<(std::ostream& os, const Student& s){
return os << s.id_ << " " << s.name_.first << " " << s.name_.second;
}
std::istream& operator >>(std::istream& is, Student& s){
is >> s.id_ >> s.name_.first >> s.name_.second;
if(!validate_id(s.id_)) // error here, says validate_id is not in scope
throw std::invalid_argument( "invalid ID" );
return is;
}
最佳答案
validate_id
是Student
的静态成员,所以需要使用类的作用域来命名:
if(!Student::validate_id(s.id_))
^^^^^^^^^
关于c++ - Was not declared in the scope 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31365230/
我是一名优秀的程序员,十分优秀!