多选题

如下代码,result变量的输出结果是多少?

发布于 2022-03-02 15:49:12

如下代码,result变量的输出结果是多少?
#include<iostream>
using namespace std
int i=1
class MyCls{
public:
	MyCls():m_nFor(m_nThd),m_nSec(i++),m_nFir(i++),m_nThd(i++){
		m_nThd=i
	}
	void echo(){
		cout<<"result:"<<m_nFir+m_nSec+m_nThd+m_nFor<<endl
	}
private:
	int m_nFir
	int m_nSec
	int m_nThd
	int &m_nFor
}
int main()
{
	MyCls oCls
	oCls.echo()
	return 0
}

登录后免费查看答案
关注者
0
被浏览
64
知识点
面圈网VIP题库

面圈网VIP题库全新上线,海量真题题库资源。 90大类考试,超10万份考试真题开放下载啦

去下载看看