开发平台(Platform): (Ex: Win10, Linux, ...)
Linux
编译器(Ex: GCC, clang, VC++...)+目标环境(跟开发平台不同的话需列出)
GCC
问题(Question):
class Testable {
bool ok_;
typedef void (Testable::*bool_type)() const;
void this_type_does_not_support_comparisons() const {}
public:
explicit Testable(bool b=true):ok_(b) {}
operator bool_type() const {
return ok_ ?
&Testable::this_type_does_not_support_comparisons : 0;
}
};
最近学C++看到这个Safe bool idiom,我知道C++11有其他写法
可是我想不懂为何里面都需要加"Testable::"这个,为何一定要写,
不然编译不过,不是很懂为何都在class内了还要特别写,这是哪条规则??
感谢!!
※ 编辑: WangDaMing (39.11.68.163 台湾), 06/08/2021 19:16:43