検索

ホームページ  >  に質問  >  本文

c++ - 这两种传递参数的过程有什么区别吗?

如下两处传递指针的方式(其余相同)有什么区别吗, 在 gcc 上有相同的结果. 我现在知道这两种在声明方面的区别了, 那么在这里传递参数的编译过程具体实现有什么注意点吗?

Node *build(char *pre_str, char *in_str, int len) //1
{
    Node *p = init(pre_str[0]-'0');
    int pos = strchr(in_str, pre_str[0] )- in_str;
    if (pos > 0) 
    {
        p->lchild = build(pre_str + 1, in_str, pos);
    }
    if (len - pos - 1 > 0)
    {
        p->rchild = build(pre_str + pos + 1, in_str + pos + 1, len - pos - 1);
    }
    return p;
}
Node *build(char pre_str[], char in_str[], int len) //2
{
    Node *p = init(pre_str[0]-'0');
    int pos = strchr(in_str, pre_str[0] )- in_str;
    if (pos > 0) 
    {
        p->lchild = build(pre_str + 1, in_str, pos);
    }
    if (len - pos - 1 > 0)
    {
        p->rchild = build(pre_str + pos + 1, in_str + pos + 1, len - pos - 1);
    }
    return p;
}
黄舟黄舟2772日前373

全員に返信(1)返信します

  • 高洛峰

    高洛峰2017-04-17 15:27:05

    配列はパラメータ転送中にポインタに変換されます

    返事
    0
  • キャンセル返事