c语言中 两个星号 **,Objective
它是一个指针,就像在C(尽管它的奇怪的方括号语法,Objective-C是基于)的指针:
char c;
char *pc = &c;
char **ppc = &pc;
char ***pppc = &ppc;
等等,无穷无尽(或直到你用完可变空间).
它通常用于将指针传递给必须能够更改指针本身的函数(例如为可变大小的对象重新分配内存).
=====
在您请求一个示例显示如何使用它之后,以下是为另一篇文章编写的代码.它是一个appendStr()函数,它管理自己的分配(您仍然必须释放最终版本).最初,您将字符串(char *)设置为NULL,函数本身将根据需要分配空间.
#include
#include
#include
void appendToStr (int *sz, char **str, char *app) {
char *newstr;
int reqsz;
/* If no string yet, create it with a bit of space. */
if (*str == NULL) {
*sz = strlen (app) + 10;
if ((*str = malloc (*sz)) == NULL) {
*sz = 0;
return;
}
strcpy (*str, app);
return;
}
/* If not enough room in string, expand it. We cou
c语言中 两个星号 **,Objective
它是一个指针,就像在C(尽管它的奇怪的方括号语法,Objective-C是基于)的指针:
char c;
char *pc = &c;
char **ppc = &pc;
char ***pppc = &ppc;
等等,无穷无尽(或直到你用完可变空间).
它通常用于将指针传递给必须能够更改指针本身的函数(例如为可变大小的对象重新分配内存).
=====
在您请求一个示例显示如何使用它之后,以下是为另一篇文章编写的代码.它是一个appendStr()函数,它管理自己的分配(您仍然必须释放最终版本).最初,您将字符串(char *)设置为NULL,函数本身将根据需要分配空间.
#include
#include
#include
void appendToStr (int *sz, char **str, char *app) {
char *newstr;
int reqsz;
/* If no string yet, create it with a bit of space. */
if (*str == NULL) {
*sz = strlen (app) + 10;
if ((*str = malloc (*sz)) == NULL) {
*sz = 0;
return;
}
strcpy (*str, app);
return;
}
/* If not enough room in string, expand it. We cou