当前位置:  技术问答>linux和unix

pointer 指定問題

    来源: 互联网  发布时间:2016-06-24

    本文导语:  void funcTest1(char *p) {    p = (char*)malloc(sizeof(char)*20);    strcpy(p, "Hello,world!");      printf("%sn", p); } int Pointer_Test8() {    char *ptr_test=0;    funcTest1(ptr_test);    printf("%sn", ptr_test); //為什麼ptr_test的address會變回...

void funcTest1(char *p)
{
   p = (char*)malloc(sizeof(char)*20);
   strcpy(p, "Hello,world!");  
   printf("%sn", p);

}

int Pointer_Test8()
{
   char *ptr_test=0;
   funcTest1(ptr_test);
   printf("%sn", ptr_test); //為什麼ptr_test的address會變回0,而不是funcTest1裡malloc的address呢?
   free(ptr_test);
   return 0;
}

|
你传的不是地址。

|
你这个p值传到子函数里只是一个副本,也就是说子函数修改传过来的副本,并不会修改原来的p值,如果想改的话,用地址

    
 
 

您可能感兴趣的文章:

 
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • java命名空间javax.sound.midi类shortmessage的类成员方法: song_position_pointer定义及介绍
  • css pointer控制在firefox下显示手型的代码
  • 【error: dereferencing pointer to incomplete type】学unix网络编程,有疑问~~ iis7站长之家
  • 基于指针pointers和引用references的区别分析
  • vga zone pointer(online ,thx)
  • "assignment makes pointer from integer without a cast"
  • 请问几个有关File lock和null pointer的问题
  • 出现warning: assignment makes pointer from integer without a cast
  • 警告 assignment makes integer from pointer without a cast是怎么回事
  • 讨厌的警告,关于iconv函数的 :passing argument 2 of ‘libiconv’ from incompatible pointer type
  • 这里的类型都是指针啊怎么会出现warning: assignment makes pointer from integer without a cast
  • warning: cast to pointer from integer of different size
  • C# Pointer指针应用实例简述
  • NULL pointer access
  • snd_pcm_ops的.pointer所實作的內容?
  • struct pointer問題
  • 【error: dereferencing pointer to incomplete type】学unix网络编程,有疑问~~
  • 一个小问题关于dereferencing pointer to incomplete type的
  • 程序提示Null pointer assignment是什么意思!
  • dereferencing pointer to incomplete type····
  • icmp dereferencing pointer to incomplete type


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3