标签: c++ c++11 rvalue-reference
我正在搞乱rvalue引用并发现了
int x = 1; int&& a(x);
是不允许的,
int&& a(1);
是可以接受的。
没关系,如果你想要这样做,我的问题是,定义一个是否有任何明显的区别
int a(1);
vs