References:
- http://thbecker.net/articles/rvalue_references/section_01.html 看过的最好的一篇讲解Rvalue refenrence的文章。
- http://blog.csdn.net/csdnji/article/details/169200
- http://www.cnblogs.com/hujian/archive/2012/02/13/2348621.html
- http://blog.csdn.net/hikaliv/article/details/4541429
看了下资料,感觉是为了解决deep copy的时候发生的一些性能问题。主要用来在语言级别上实现类似auto_ptr那样的功能吧。