c – 无法通过对* this的引用重载

这是我为g24-4.8.1编写的一个繁忙的盒子(我认为clang-2.9也应该这样做)用于N2439(对于’this’的ref-qualifiers):

class Foo
{
public:
  Foo(int i) : _M_i(i) { }
  int bar() & { return _M_i /= 2; }
  int bar() const & { return _M_i; }
  int bar() && { return 2 * _M_i; }

private:
  int _M_i = 42;
};

int
main()
{
  Foo ph(333);
  ph.bar();

  const Foo ff(123);
  ff.bar();

  Foo(333).bar();
}

我在阅读标准8.3.5时认为三个bar()方法应该是可重载的.我收到链接器错误:

[ed@localhost ref_this]$../bin/bin/g++ -std=c++11 -o ref_this ref_this.cpp
/tmp/ccwPhzqr.s: Assembler messages:
/tmp/ccwPhzqr.s:73: Error: symbol `_ZN3Foo3barEv' is already defined

如果我注释掉int bar()const&我无法解析ff.bar();:

[ed@localhost ref_this]$../bin/bin/g++ -std=c++11 -o ref_this ref_this.cpp
ref_this.cpp: In function ‘int main()’:
ref_this.cpp:26:10: error: no matching function for call to ‘Foo::bar() const’
   ff.bar();
          ^
ref_this.cpp:26:10: note: candidates are:
ref_this.cpp:11:7: note: int Foo::bar() &
   int bar() & { return _M_i /= 2; }
       ^
ref_this.cpp:11:7: note:   no known conversion for implicit ‘this’ parameter from ‘const Foo’ to ‘Foo&’
ref_this.cpp:13:7: note: int Foo::bar() &&
   int bar() && { return 2 * _M_i; }
       ^
ref_this.cpp:13:7: note:   no known conversion for implicit ‘this’ parameter from ‘const Foo’ to ‘Foo&&’

这是gcc bug还是标准的一部分?

我不是在电脑上铿锵有力,但铿锵说什么?

最佳答案 GCC版本4.8.0不支持此功能.
It should be supported by GCC 4.8.1,尚未正式发布.

据我所知,目前唯一支持成员函数引用限定符的主要编译器是Clang.从this example可以看出,你的代码在Clang 3.2上编译得很好.

点赞