c++面向对象高级编程 学习十四 引用

文章目录

  • reference
  • reference的常见用途

reference

变量有三种形式:值,指针,引用

int x=0; //值
int* p=&x;//指向整型的指针,地址,指针在之后的程序中可以指向其他变量
int& r=x;//引用,此处表示 r代表x,在之后的程序中r只能一直代表x,不能再代表其他变量,此时r x都是0int x2=5;
r=x2;//此时r x都是5
int& r2=r;//此时r2是5,r2代表r,r代表x,相当于r2代表x

如果r是x的引用,则sizeof(r)==sizeof(x),&r==&x

reference的常见用途

在这里插入图片描述

测试类包含两个fun函数,其中一个有const一个没有const

#ifndef _TEST_H
#define _TEST_H#include<iostream>
using namespace std;
class Test {
public:Test(int tval = 0):t(tval) {}void fun()const {cout << "有const的function" << endl;cout << t << endl;}void fun(){cout << "没有const的function" << endl;cout << t << endl;}
private:int t;
};
#endif 

调用:

int main()
{Test myTest(5);myTest.fun();const Test myTest2(10);myTest2.fun();system("pause");return 0;
}

输出结果为:

没有const的function
5const的function
10

上述验证表明,const是函数签名的一部分,常量类只能调用常量成员函数,即带有const的,非常量类优先调用不带有const的函数,若只有带有const的常量成员函数,则非常量类就调用常量成员函数,即上述示例,我们如果将下述代码进行注释,

void fun(){cout << "没有const的function" << endl;cout << t << endl;}

则输出的结果为:

const的function
5const的function
10

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/446592.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

google浏览器 隐藏功能开启

网址 chrome://flags/ 1&#xff0c;多线程下载 2&#xff0c;暗黑模式3&#xff0c;标签缩略图4&#xff0c;PWA 渐进式web应用 网页即应用5&#xff0c;阅读模式&#xff0c;排除广告&#xff0c;点击阅读模式去除干扰chrome://net-internals6&#xff0c;解决有问题的代理IP…

英语口语Week 15 Wednesday

英语文章 Accomplishing the task assigned by the teacher; Julia rushed out. Squatting at the gate and playing with the squirrel, Bella waved at the sight of Julia and yelled out here" . Julia ran quickly towards them, pointed at the squirrel and asked…

c++面向对象高级编程 学习十五 组合继承关系下的构造和析构

文章目录继承关系组合关系继承和组合继承关系 构造由内而外&#xff0c;析构由外而内&#xff0c;内即是父类 组合关系 A拥有B&#xff0c; 构造由内而外&#xff0c;析构由外而内&#xff0c;内即是B 继承和组合 构造和析构顺序如图&#xff1a;

英语口语Week16 Wednesday

英语文章 Recently my friend received a gift from her boyfriend - a very expensive bracelet. But the substance of her response left us in astonishment - she didn’t attend to the exquisiteness(of the gift and wanted to return it to him In terms of salary, …

C++ 查漏补缺

特性关系 C语言面向过程C面向过程 面向对象(封装 继承 多态)C具备C语言的全部特性的基础上&#xff0c;并且支持更多新的特性 内存泄露 申请内存&#xff0c;没有释放申请 malloc new释放 free deleteProcessExplorer查看内存是否释放 代码移植 将生成的exe运行在别的平台&…

c++面向对象高级编程 学习十六 vptr和vtbl

当一个类中有一个或多个虚函数时&#xff0c;内存中会多一个虚指针&#xff08;vptr&#xff0c;virtual pointer&#xff09;&#xff0c;指向一个虚表&#xff08;vtbl&#xff0c;virtual table&#xff09; 父类有虚函数&#xff0c;则子类一定有虚函数 在下图示意图中&a…

英语口语Week16 Thursday

英语文章 It is an impossibility that everything runs smoothly in everyday life. Where there is trouble, there could be anxiety.Anxiety is a common phenomenon; you are not the only one carrying it. But, it could be somewhat poisonous if you don’t let it o…

c++面向对象高级编程 学习十七 const, new, delete

文章目录常量成员函数new和delete常量成员函数 常量成员函数是不改变成员数据。 当成员函数的const和non-const版本同时存在时&#xff0c;const object只能调用const版本&#xff0c;non-const object只能调用non-const版本。因此&#xff0c;可以看出&#xff0c;const是函…

codeforces 467A-C语言解题报告

题目网址 题目解析 1.输入n个房间,再每一行输入现有的p个人,和一共可以容纳的q人数,如果q-p>2则计数1 代码 #include<stdio.h> #include<stdlib.h> #include<string.h>int main() {int n0,p0,q0;int count0,i;scanf("%d",&n);for(i0;i&…

使用引用的方式交换数据的数值

#include <iostream>void swap(int &a,int &b){a ^ b;b ^ a;a ^ b; } int main(){int num1 10;int num2 20;swap(num1,num2);std::cout << num1 << std::endl;std::cout << num2 << std::endl; }

C++STL与泛型编程 侯捷 (1)

泛型编程&#xff08;Generic Programming&#xff0c;GP&#xff09;&#xff0c;就是使用template&#xff08;模板&#xff09;为主要工具来编写程序。 重要网页&#xff1a; http://www.cplusplus.com/ https://en.cppreference.com/w/ http://gcc.gnu.org/

codeforces 136A-C语言解题报告

题目网址 题目解析 1.输入每个人给第几个人发礼物(1–n), 输出每个人收到第几个人发的礼物 2.因为1–n,所以for循环也使用1–n output[input[j]]j; 代码 #include<stdio.h> #include<stdlib.h> #include<string.h> int main() {int n0;scanf("%d&…

static内容相关介绍学习

说一下static关键字的作用 当程序执行到函数内部定义的变量时&#xff0c;编译器为它在栈上分配空间&#xff0c;函数在栈上分配的空间在此函数执行结束时会释放掉&#xff0c;这样就产生了一个问题: 如果想将函数中此变量的值保存至下一次调用时&#xff0c;如何实现&#xf…

C++STL与泛型编程(2) 第一个C++ STL Application

文章目录STL六大部件STL六大部件代码示例时间复杂度前闭后开区间auto关键字的用法STL六大部件 容器 分配器 算法 迭代器 适配器 仿函数 容器要放东西&#xff0c;东西要占用内存&#xff0c;分配器可支持容器解决内存问题。算法处理容器中的数据。迭代器是容器和算法之间的桥…

codeforces 344A-C语言解题报告

题目网址 题目解析 1.有10和01两种,同性相斥,异性相吸 2.01是1,使用pre去记录前一个,写出所有情况 0110 1001 分为一组 代码 #include<stdio.h> #include<stdlib.h> #include<string.h> int main() {int n0;int i0;int c0;int pre-1;int count0;scanf(&…

JAVA 程序执行进行计时,用于验证程序执行的时间

package com.example.algorithm.demo.class1;public class Hello {public static void main(String[] args) {long start System.nanoTime();//程序开始时间System.out.println(start);System.out.println("Hello");long end System.nanoTime();System.out.println…

C++STL与泛型编程__侯捷视频_学习博客_总目录

CSTL与泛型编程 侯捷 &#xff08;1&#xff09;: c重要网站相关 CSTL与泛型编程&#xff08;2&#xff09; 第一个C STL Application&#xff1a; STL六大部件代码示例&#xff0c;容器前闭后开区间&#xff0c;auto关键字的用法示例 CSTL与泛型编程&#xff08;3&#xff0…

codeforces 1030A-C语言解题报告

题目网址 题目解析 1.输入一串数字,如果有1就输出HARD,否则输出EASY 2.勿忘& 代码 #include<stdio.h> #include<stdlib.h> #include<string.h> int main() {int n0,i0;int num0;int count0;scanf("%d",&n);for(i;i<n;i){scanf(&quo…

C++STL与泛型编程(3)容器之分类与测试

文章目录容器的分类序列式容器&#xff08;sequence containers&#xff09;代码示例辅助函数array 容器array容器的测试代码测试代码中部分函数解析vector 容器vector 容器的测试代码测试代码中部分函数解析list 容器list 容器的测试代码测试代码中部分函数解析forward_list 容…

codeforces 318A-C语言解题报告

题目网址 题目 1.一个数先奇数从小到大再偶数从小到大(1–n),问第k个数是什么? 2.举例发现规律: 第k个数与n的奇偶无关,使用中间数mid(a1)/2;进行判断,k是奇数还是偶数 奇数:countb*2-1; 偶数:count(b-mid)*2; 3.因为数很大,使用scanf("%lld %lld",&a,&…