当前位置:编程学习 > C/C++ >>

More Effective C++ 读书笔记1 .

Item 1:  指针和引用的区别


1.指针可以为空值,引用不可以引用不可以为空值的好处是可以省略判断,提高代码效率。


[cpp] 
01.void Test(const  int& count) 
02.{ 
03.    cout << count << endl; 
04.} 
05. 
06.void Test(const int* count) 
07.{ 
08.    if(NULL != count) 
09.    { 
10.        cout << count << endl; 
11.    } 
12.} 
void Test(const  int& count)
{
    cout << count << endl;
}

void Test(const int* count)
{
    if(NULL != count)
    {
        cout << count << endl;
    }
}2 指针可以被改变,引用初始化后不可以再改变
3 重载某些操作符时可能需要返回引用

也就是说,当有可能会为空值的时候要使用指针,当有变量可能改变的时候要使用指针。

 


 

补充:软件开发 , C++ ,
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,