c++中指针,指针的引用,指针的指针的区别

看例子和结果:

#include  " stdafx.h "
#include 
< iostream >
using   namespace  std;
void  FreePtr1( int *  ptr1)
{
    delete ptr1; 
    ptr1 
= NULL;
}


void  FreePtr2( int *&  ptr2)
{
    delete ptr2; 
    ptr2 
= NULL;
}
 
void  FreePtr3( int   ** ptr3)
{
    delete 
*ptr3;
    
*ptr3 = NULL;
}


void  main()
{
    cout
<<"---------------------------------------"<<endl;
    
int *p1 = new int;
    
*p1 = 1;
    cout
<<"*p1="<<*p1<<endl;
    FreePtr1(p1);
    cout
<<"after call freePtr1"<<endl;
    
if(p1 != NULL)
    
{
        cout
<<"p1 is not null"<<endl;
        cout
<<"*p1="<<(*p1)<<endl;
    }

    cout
<<"---------------------------------------"<<endl;
    
int *p2 = new int;
    
*p2 = 2;
    cout
<<"*p2="<<*p2<<endl;
    FreePtr2(p2);
    cout
<<"after call freePtr2"<<endl;
    
if(p2 != NULL)
    
{       
        cout
<<"*p2="<<*p2<<endl;
    }

    
else
    
{
        cout
<<"the p2 is null"<<endl;
    }

    cout
<<"---------------------------------------"<<endl;
    
int *p3 ;
    p3 
= new int(3);
    cout
<<"*p3="<<*p3<<endl;
    FreePtr3(
&p3);
    cout
<<"after call freePtr3"<<endl;
    
if(p3 != NULL)
    
{       
        cout
<<"*p3="<<*p3<<endl;
    }

    
else
    
{
        cout
<<"the p3 is null"<<endl;
    }

    cout
<<"---------------------------------------"<<endl;
    system(
"pause");

}

结果:
o_cpppointer.jpg


comments:

对p1指针:
cout<<"---------------------------------------"<<endl;
 int *p1 = new int;
 *p1 = 1;
 cout<<"*p1="<<*p1<<endl;
o_p1before.jpg
// FreePtr1(p1);
void FreePtr1(int* ptr1)
{
o_ptr1before.jpg
 delete ptr1; 
o_ptr1delete.jpg
 ptr1 = NULL;
o_ptr1null.jpg
}
o_p1after.jpg
  cout<<"after call freePtr1"<<endl;
 if(p1 != NULL)
 {
  cout<<"p1 is not null"<<endl;
  cout<<"*p1="<<(*p1)<<endl;
 }
 cout<<"---------------------------------------"<<endl;

而p2为:
调用前:
o_p2before.jpg
调用后:
o_p2after.jpg


注意: 函数的参数进行值拷贝,即使传的是指针,也的对指针(即指针里存的地址)的拷贝, 可不是指针里地址所指的值的拷贝啊!
 
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值