代码拉取完成,页面将自动刷新
同步操作将从 Huoty/cppstudy 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
/*
* Copyright (c) JoinQuant Development Team
* Author: Huayong Kuang <kuanghuayong@joinquant.com>
*
*/
#include <iostream>
using namespace std;
void convert(int &a, int &b, bool a2b=true);
void addThree(int& num1, int& num2, int& num3, int& sum)
{
sum = num1 + num2 + num3;
}
void convert(int &a, int &b, bool a2b) {
if (a2b) {
b = 1000;
} else {
a = 2000;
}
}
void transfer_str(string &s1, const string &s2=string("111")) {
s1 = s2;
}
int main(void)
{
int n1 = 1, n2 = 2, n3 = 3, s;
addThree(n1, n2, n3, s);
cout << s << endl;
int a;
int b;
int m = 10;
convert(m, b);
cout << b << endl;
convert(a, m, false);
cout << a << endl;
string ss;
transfer_str(ss);
//transfer_str(ss, string("hello world"));
cout << ss << endl;
return 0;
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。