莉莉娅雀氏想笑 2023-03-03 16:03 采纳率: 50%
浏览 22
已结题

return返回对象做了什么

猜测:带cp的是匿名对象,由return产生,他调用复制构造函数复制了st,复制完后st的作用域结束,调用析构。匿名对象作为test的返回值,此时若有变量接收则进行赋值,在test函数结束后对匿名对象析构

上代码:


#include <iostream>
using namespace std;
class Student
{
public:
    Student() {
        id = 99;
        copy = false;
        cout << "Constructor student-" << id << (copy ? "cp" : "") << " is called." << endl;;
    }
    Student(int i):id(i) {
        copy = false;
        cout << "Constructor student-" << id << (copy ? "cp" : "") << " is called." << endl;;
    }
    Student(Student& st) {
        id = st.id;
        copy = true;
        cout << "Copy constructor student-" <<  id << (copy ? "cp" : "") << " is called." << endl;;
    }
    ~Student(){
        cout << "Deconstructor student-" << id << (copy?"cp":"") << " is called." << endl;
    }
private:
    int id;
    bool copy;
};


//测试
Student test() {
    Student st(1);
    return st;
}

int main()
{
    Student s99;
    test();
    Student s2(2);
}

//运行结果
Constructor student-99 is called.
//test内    
Constructor student-1 is called.
Copy constructor student-1cp is called.
Deconstructor student-1 is called.
Deconstructor student-1cp is called.
//test内    
Constructor student-2 is called.
Deconstructor student-2 is called.
Deconstructor student-99 is called.
  • 写回答

1条回答 默认 最新

  • 於黾 2023-03-03 16:33
    关注

    你理解的不对
    根本不存在匿名对象
    Student st
    st不是对象的名字吗,哪里匿名了
    c++里就不存在匿名对象
    只有匿名函数

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论 编辑记录

报告相同问题?

问题事件

  • 系统已结题 3月11日
  • 已采纳回答 3月3日
  • 创建了问题 3月3日

悬赏问题

  • ¥15 请问一下这个运行结果是怎么来的
  • ¥15 这个复选框什么作用?
  • ¥15 单通道放大电路的工作原理
  • ¥30 YOLO检测微调结果p为1
  • ¥20 求快手直播间榜单匿名采集ID用户名简单能学会的
  • ¥15 DS18B20内部ADC模数转换器
  • ¥15 做个有关计算的小程序
  • ¥15 MPI读取tif文件无法正常给各进程分配路径
  • ¥15 如何用MATLAB实现以下三个公式(有相互嵌套)
  • ¥30 关于#算法#的问题:运用EViews第九版本进行一系列计量经济学的时间数列数据回归分析预测问题 求各位帮我解答一下