作为另一个问题的答案,我想发布以下代码(也就是说,我想根据这个想法发布代码):
#include <iostream>
#include <utility> // std::is_same, std::enable_if
using namespace std;
template< class Type >
struct Boxed
{
Type value;
template< class Arg >
Boxed(
Arg const& v,
typename enable_if< is_same< Type, Arg >::value, Arg >::type* = 0
)
: value( v )
{
wcout << "Generic!" << endl;
}
Boxed( Type&& v ): value( move( v ) )
{
wcout << "Rvalue!" << endl;
}
};
void function( Boxed< int > v ) {}
int main()
{
int i = 5;
function( i ); //<- this is acceptable
char c = 'a';
function( c ); //<- I would NOT like this to compile
}
然而,虽然 MSVC 11.0 在最后一次调用中阻塞,正如 IHMO 应该的那样,MinGW g++ 4.7.1 只是接受它,并使用右值引用形式参数调用构造函数。
在我看来,左值好像绑定到右值引用。一个灵活的答案可能是将左值转换为右值。但问题是,这是否是编译器错误,如果不是,神圣标准如何允许这样做?
编辑:我设法将其简化为以下非常简短的示例:
void foo( double&& ) {}
int main()
{
char ch = '!';
foo( ch );
}
使用 MSVC 11.0 编译失败,使用 MinGW 4.7.1 编译,这是对的吗?