热门标签
更多>
搜索结果
查询Tags标签: 0x7ffc31f85c10,共有 2条记录-
[C++]调函数时const X x会复制吗; 返回对象会复制吗?
#include <vector> #include <stdio.h>struct X : public std::vector<int> {void print() const { printf("%p ", this); } };void fn1(X x) { x.print(); } void fn2(const X x) { x.print(); } void fn3(const X& x) { x.print(); } X…
2021/12/14 9:17:54 人评论 次浏览 -
[C++]调函数时const X x会复制吗; 返回对象会复制吗?
#include <vector> #include <stdio.h>struct X : public std::vector<int> {void print() const { printf("%p ", this); } };void fn1(X x) { x.print(); } void fn2(const X x) { x.print(); } void fn3(const X& x) { x.print(); } X…
2021/12/14 9:17:54 人评论 次浏览