热门标签
更多>
搜索结果
查询Tags标签: showvalue,共有 2条记录-
081.C++中的引用-常量引用
#include <iostream> using namespace std;//打印数据函数 void showvalue(const int& val) {cout << "val=" << val << endl; }int main() {//常量引用//使用场景,用来修饰形参,防止误操作//int a = 10;//加上const之后 编译器将…
2021/9/6 20:07:27 人评论 次浏览 -
081.C++中的引用-常量引用
#include <iostream> using namespace std;//打印数据函数 void showvalue(const int& val) {cout << "val=" << val << endl; }int main() {//常量引用//使用场景,用来修饰形参,防止误操作//int a = 10;//加上const之后 编译器将…
2021/9/6 20:07:27 人评论 次浏览