RVO and move constructor

后端 未结 0 1007
囚心锁ツ
囚心锁ツ 2020-12-21 12:01
#include 

struct Row
{
  int a;
  Row() { puts("default"); }
  Row(const Row &other) { puts("copy"); }
  Row(Row &&         


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题