在编写与宇宙飞船运算符相关的 C++20 时,我注意到一些相当奇怪的东西。
据我了解,从 C++20 开始,比较运算符是由编译器自动生成的。但是,我遇到了一个关于自动生成运算符的有趣问题。
在下面的代码中,我试图定义MyIterator
哪个派生自vector<int>::iterator
. 现在我希望基类受到保护并显式地公开函数。所以很自然地,我使用using
声明来使用基类中的成员函数。但是,编译器抱怨operator!=
缺少!
发生这种情况是因为自动生成的运算符“生成得太晚”吗?
有趣的是,定义中显示的解决方法MyIterator2
似乎可以解决问题。
我想听听这种奇怪行为的原因。这是通过 spaceship 运算符自动生成的运算符的预期行为吗?或者这是编译器错误还是未实现的功能?
编译器版本信息:
[hoge@foobar]$ clang++ --version
clang version 10.0.1
Target: x86_64-pc-linux-gnu
Thread model: posix
InstalledDir: /usr/bin
代码(main.cpp):
#include <vector>
using MyVec = std::vector<int>;
/// Does not compile
class MyIterator : protected MyVec::iterator {
using Base = MyVec::iterator;
// Error
// No member named 'operator!=' in '__gnu_cxx::__normal_iterator<int *,
// std::vector<int, std::allocator<int>>>'clang(no_member)
using Base::operator!=;
};
/// Compiles
class MyIterator2 : protected MyVec::iterator {
using Base = MyVec::iterator;
/// A rather ugly workaround!
auto operator!=(const MyIterator2 &o) const {
return static_cast<const Base &>(*this) != static_cast<const Base &>(o);
}
};
补充笔记:
GCC 也以同样的方式拒绝代码。
[hoge@foobar tmp]$ g++ --version
g++ (GCC) 10.2.0
Copyright (C) 2020 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
[hoge@foobar tmp]$ g++ main.cpp
main.cpp:12:23: error: ‘operator!=’ has not been declared in ‘__gnu_cxx::Base’
12 | using Base::operator!=;
|