标签: c++ c++11 reference c++14 ref
为什么我们需要使用引用限定函数?
class Y { void h() &; void h() &&; };
与没有参考限定符(&或&&)的功能相比,它们的功能和优势是什么?