【C\C++】函数传参中结构体构造析构顺序的探究

本文通过一个C++程序示例探讨了在函数调用时结构体参数的构造和析构顺序。程序中定义了三个结构体类型,并在main函数中使用预增操作符对它们进行操作后传递给函数kong。输出结果揭示了对象构造和析构的顺序,对于理解C++中对象生命周期和函数参数传递机制具有重要意义。

【C\C++】函数传参中结构体构造析构顺序的探究

[by_041]
  • 参考以下程序,通过观察输出结果得出结论、、
#include<bits/stdc++.h>

using namespace std;

struct test_1
{
	test_1(){cout<<"create\t1"<<endl;}
	~test_1(){cout<<"free\t1"<<endl;}
	test_1 operator++(){cout<<"op\t1"<<endl;return *this;}
}t1;

struct test_2
{
	test_2(){cout<<"create\t2"<<endl;}
	~test_2(){cout<<"free\t2"<<endl;}
	test_2 operator++(){cout<<"op\t2"<<endl;return *this;}
}t2;

struct test_3
{
	test_3(){cout<<"create\t3"<<endl;}
	~test_3(){cout<<"free\t3"<<endl;}
	test_3 operator++(){cout<<"op\t3"<<endl;return *this;}
}t3;


void kong(test_1 a,test_2 b,test_3 c)
{
	cout<<"in kong( )"<<endl;
	return;
}

int main()
{
	kong(++t1,++t2,++t3);
	return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值