当前位置:  开发笔记 > 编程语言 > 正文

C:修改通过typedef传递的int指针的最佳方法是什么?

如何解决《C:修改通过typedef传递的int指针的最佳方法是什么?》经验,为你挑选了1个好方法。

我有一个typedef int my_type,我有一个看起来像的函数

void my_func (my_type* x);

我应该如何使用此函数使用最佳实践修改x?



1> claf..:

您可以在函数中使用解除引用运算符'*':

void my_func (my_type* x)
{
  assert(x); // To protect from NULL pointer as mentioned in com.

  *x = 5; //for example
}

推荐阅读
小妖694_807
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有