- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章解析C++引用由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
我选择写C++中的引用是因为我感觉大多数人误解了引用。而我之所以有这个感受是因为我主持过很多C++的面试,并且我很少从面试者中得到关于C++引用的正确答案.
那么c++中引用到底意味这什么呢?通常一个引用让人想到是一个引用的变量的别名,而我讨厌将c++中引用定义为变量的别名。这篇文章中,我将尽量解释清楚,c++中根本就没有什么叫做别名的东东.
在c/c++中,访问一个变量只能通过两种方式被访问,传递,或者查询。这两种方式是:
1.通过值访问/传递变量 。
2.通过地址访问/传递变量–这种方法就是指针 。
除此之外没有第三种访问和传递变量值的方法。引用变量也就是个指针变量,它也拥有内存空间。最关键的是引用是一种会被编译器自动解引用的指针。很难相信么?
下面是一段使用引用的简单c++代码 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include <iostream.h>
int
main()
{
int
i = 10;
// A simple integer variable
int
&j = i;
// A Reference to the variable i
j++;
// Incrementing j will increment both i and j.
// check by printing values of i and j
cout<< i << j <<endl;
// should print 11 11
// Now try to print the address of both variables i and j
cout<< &i << &j <<endl;
// surprisingly both print the same address and make us feel that they are
// alias to the same memory location.
// In example below we will see what is the reality
return
0;
}
|
引用其实就是c++中的常量指针。表达式int &i = j;将会被编译器转化成int *const i = &j;而引用之所以要初始化是因为const类型变量必须初始化,这个指针也必须有所指。下面我们再次聚焦到上面这段代码,并使用编译器的那套语法将引用替换掉.
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include <iostream.h>
int
main()
{
int
i = 10;
// A simple integer variable
int
*
const
j = &i;
// A Reference to the variable i
(*j)++;
// Incrementing j. Since reference variables are
// automatically dereferenced by compiler
// check by printing values of i and j
cout<< i << *j <<endl;
// should print 11 11
// A * is appended before j because it used to be reference variable
// and it should get automatically dereferenced.
return
0;
}
|
读者一定很奇怪为什么我上面这段代码会跳过打印地址这步。这里需要一些解释。因为引用变量时会被编译器自动解引用的,那么一个诸如cout << &j << endl;的语句,编译器就会将其转化成语句cout << &*j << endl;现在&*会相互抵消,这句话变的毫无意义,而cout打印的j值就是i的地址,因为其定义语句为int *const j = &i,
所以语句cout << &i << &j << endl;变成了cout << &i << &*j << endl;这两种情况都是打印输出i的地址。这就是当我们打印普通变量和引用变量的时候会输出相同地址的原因.
下面给出一段复杂一些的代码,来看看引用在级联(cascading)中是如何运作的.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#include <iostream.h>
int
main()
{
int
i = 10;
// A Simple Integer variable
int
&j = i;
// A Reference to the variable
// Now we can also create a reference to reference variable.
int
&k = j;
// A reference to a reference variable
// Similarly we can also create another reference to the reference variable k
int
&l = k;
// A reference to a reference to a reference variable.
// Now if we increment any one of them the effect will be visible on all the
// variables.
// First print original values
// The print should be 10,10,10,10
cout<< i <<
","
<< j <<
","
<< k <<
","
<< l <<endl;
// increment variable j
j++;
// The print should be 11,11,11,11
cout<< i <<
","
<< j <<
","
<< k <<
","
<< l <<endl;
// increment variable k
k++;
// The print should be 12,12,12,12
cout<< i <<
","
<< j <<
","
<< k <<
","
<< l <<endl;
// increment variable l
l++;
// The print should be 13,13,13,13
cout<< i <<
","
<< j <<
","
<< k <<
","
<< l <<endl;
return
0;
}
|
下面这段代码是将上面代码中的引用替换之后代码,也就是说明我们不依赖编译器的自动替换功能,手动进行替换也能达到相同的目标.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
#include <iostream.h>
int
main()
{
int
i = 10;
// A Simple Integer variable
int
*
const
j = &i;
// A Reference to the variable
// The variable j will hold the address of i
// Now we can also create a reference to reference variable.
int
*
const
k = &*j;
// A reference to a reference variable
// The variable k will also hold the address of i because j
// is a reference variable and
// it gets auto dereferenced. After & and * cancels each other
// k will hold the value of
// j which it nothing but address of i
// Similarly we can also create another reference to the reference variable k
int
*
const
l = &*k;
// A reference to a reference to a reference variable.
// The variable l will also hold address of i because k holds address of i after
// & and * cancels each other.
// so we have seen that all the reference variable will actually holds the same
// variable address.
// Now if we increment any one of them the effect will be visible on all the
// variables.
// First print original values. The reference variables will have * prefixed because
// these variables gets automatically dereferenced.
// The print should be 10,10,10,10
cout<< i <<
","
<< *j <<
","
<< *k <<
","
<< *l <<endl;
// increment variable j
(*j)++;
// The print should be 11,11,11,11
cout<< i <<
","
<< *j <<
","
<< *k <<
","
<< *l <<endl;
// increment variable k
(*k)++;
// The print should be 12,12,12,12
cout<< i <<
","
<< *j <<
","
<< *k <<
","
<< *l <<endl;
// increment variable l
(*l)++;
// The print should be 13,13,13,13
cout << i <<
","
<< *j <<
","
<< *k <<
","
<< *l <<endl;
return
0;
}
|
我们通过下面代码可以证明c++的引用不是神马别名,它也会占用内存空间的.
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include <iostream.h>
class
Test
{
int
&i;
// int *const i;
int
&j;
// int *const j;
int
&k;
// int *const k;
};
int
main()
{
// This will print 12 i.e. size of 3 pointers
cout<<
"size of class Test = "
<<
sizeof
(
class
Test) <<endl;
return
0;
}
|
我希望这篇文章能把c++引用的所有东东都解释清楚,然而我要指出的是c++标准并没有解释编译器如何实现引用的行为。所以实现取决于编译器,而大多数情况下就是将引用实现为一个const指针.
引用支持c++虚函数机制的代码 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#include <iostream.h>
class
A
{
public
:
virtual
void
print() { cout<<
"A.."
<<endl; }
};
class
B :
public
A
{
public
:
virtual
void
print() { cout<<
"B.."
<<endl; }
};
class
C :
public
B
{
public
:
virtual
void
print() { cout<<
"C.."
<<endl; }
};
int
main()
{
C c1;
A &a1 = c1;
a1.print();
// prints C
A a2 = c1;
a2.print();
// prints A
return
0;
}
|
上述代码使用引用支持虚函数机制。如果引用仅仅是一个别名,那如何实现虚函数机制,而虚函数机制所需要的动态信息只能通过指针才能实现,所以更加说明引用其实就是一个const指针.
以上就是解析C++引用的详细内容,更多关于C++引用的资料请关注我其它相关文章! 。
原文链接:https://www.cnblogs.com/lsgxeva/p/7785261.html 。
最后此篇关于解析C++引用的文章就讲到这里了,如果你想了解更多关于解析C++引用的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
#include using namespace std; class C{ private: int value; public: C(){ value = 0;
这个问题已经有答案了: What is the difference between char a[] = ?string?; and char *p = ?string?;? (8 个回答) 已关闭
关闭。此题需要details or clarity 。目前不接受答案。 想要改进这个问题吗?通过 editing this post 添加详细信息并澄清问题. 已关闭 7 年前。 此帖子已于 8 个月
除了调试之外,是否有任何针对 c、c++ 或 c# 的测试工具,其工作原理类似于将独立函数复制粘贴到某个文本框,然后在其他文本框中输入参数? 最佳答案 也许您会考虑单元测试。我推荐你谷歌测试和谷歌模拟
我想在第二台显示器中移动一个窗口 (HWND)。问题是我尝试了很多方法,例如将分辨率加倍或输入负值,但它永远无法将窗口放在我的第二台显示器上。 关于如何在 C/C++/c# 中执行此操作的任何线索 最
我正在寻找 C/C++/C## 中不同类型 DES 的现有实现。我的运行平台是Windows XP/Vista/7。 我正在尝试编写一个 C# 程序,它将使用 DES 算法进行加密和解密。我需要一些实
很难说出这里要问什么。这个问题模棱两可、含糊不清、不完整、过于宽泛或夸夸其谈,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开,visit the help center . 关闭 1
有没有办法强制将另一个 窗口置于顶部? 不是应用程序的窗口,而是另一个已经在系统上运行的窗口。 (Windows, C/C++/C#) 最佳答案 SetWindowPos(that_window_ha
假设您可以在 C/C++ 或 Csharp 之间做出选择,并且您打算在 Windows 和 Linux 服务器上运行同一服务器的多个实例,那么构建套接字服务器应用程序的最明智选择是什么? 最佳答案 如
你们能告诉我它们之间的区别吗? 顺便问一下,有什么叫C++库或C库的吗? 最佳答案 C++ 标准库 和 C 标准库 是 C++ 和 C 标准定义的库,提供给 C++ 和 C 程序使用。那是那些词的共同
下面的测试代码,我将输出信息放在注释中。我使用的是 gcc 4.8.5 和 Centos 7.2。 #include #include class C { public:
很难说出这里问的是什么。这个问题是含糊的、模糊的、不完整的、过于宽泛的或修辞性的,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开它,visit the help center 。 已关
我的客户将使用名为 annoucement 的结构/类与客户通信。我想我会用 C++ 编写服务器。会有很多不同的类继承annoucement。我的问题是通过网络将这些类发送给客户端 我想也许我应该使用
我在 C# 中有以下函数: public Matrix ConcatDescriptors(IList> descriptors) { int cols = descriptors[0].Co
我有一个项目要编写一个函数来对某些数据执行某些操作。我可以用 C/C++ 编写代码,但我不想与雇主共享该函数的代码。相反,我只想让他有权在他自己的代码中调用该函数。是否可以?我想到了这两种方法 - 在
我使用的是编写糟糕的第 3 方 (C/C++) Api。我从托管代码(C++/CLI)中使用它。有时会出现“访问冲突错误”。这使整个应用程序崩溃。我知道我无法处理这些错误[如果指针访问非法内存位置等,
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 我们不允许提问寻求书籍、工具、软件库等的推荐。您可以编辑问题,以便用事实和引用来回答。 关闭 7 年前。
已关闭。此问题不符合Stack Overflow guidelines 。目前不接受答案。 要求我们推荐或查找工具、库或最喜欢的场外资源的问题对于 Stack Overflow 来说是偏离主题的,因为
我有一些 C 代码,将使用 P/Invoke 从 C# 调用。我正在尝试为这个 C 函数定义一个 C# 等效项。 SomeData* DoSomething(); struct SomeData {
这个问题已经有答案了: Why are these constructs using pre and post-increment undefined behavior? (14 个回答) 已关闭 6
我是一名优秀的程序员,十分优秀!