1 Star 0 Fork 0

丁旭升/cpp代码

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
练习.txt 1.01 KB
一键复制 编辑 原始数据 按行查看 历史
丁旭升 提交于 2022-07-11 09:35 . exercise,学习
//#include<iostream>
//using namespace std;
//
//
//int Add(int left, int right)
//{
// return left + right;
//}
//double Add(double left, double right)
//{
// return left + right;
//}
//long Add(long left, long right)
//{
// return left + right;
//}
//int main()
//{
// cout<<Add(10, 20)<<" 类型:";
// //类型
// cout << typeid(Add(10, 20)).name() << endl;
//
// cout<<Add(10.0, 20.0)<< " 类型:";
// //类型
// cout << typeid(Add(10.0, 20.0)).name() << endl;
//
// cout<<Add(10L, 20L)<< " 类型:";
// //类型
// cout << typeid(Add(10L, 20L)).name() << endl;
//
// return 0;
//}
#include<iostream>
using namespace std;
void tect1()
{
int a = 10;
int& ra = a;//<====定义引用类型
cout<<&a<<endl;
cout<<&ra<<endl;
}
void tect2()
{
int a = 10;
// int& ra; // 该条语句编译时会出错
int& ra = a;
int& rra = a;
cout << &a << " " << &ra << " " << &rra << endl;
}
void tect3()
{
int ii = 10;
double dd = ii;
//double& dd = ii; 错误写法
const double& rdd = ii;
}
int main()
{
tect3();
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/ding-xushengyun/code.git
[email protected]:ding-xushengyun/code.git
ding-xushengyun
code
cpp代码
master

搜索帮助