如何正确使用char **?

时间:2017-09-07 18:12:24

标签: c++ arrays pointers

我有两个例子,其中哪两个更好,为什么?在这两种情况下,我得到了相同的结果。我选择容器只是为了保持字符串。

Example 1:

    char *c_ptr[] = {};
    int num;
    if (fill_array(c_ptr, &num) != 0) {
          cout << "Error" << endl;
    }
    for (int i = 0; i < num; i++) {
       cout << "Str[" << i << "] = " << c_ptr[i] << endl;
    } 
    // free pointer..

    // Function implementation 
    int fill_array(char *c_ptr[], int *count) {
        vector<string> v = {"haha", "hehe", "omg", "happy, learning!"};
        *count = v.size();
        int i = 0;

        for (vector<string>::iterator it = v.begin(); it != v.end(); it++, i++) {
            c_ptr[i] = (char*)malloc((*it).size() + 1);
            strncpy(c_ptr[i], (*it).c_str(),(*it).size() + 1);
        }
        return 0;
    }


Example 2:

    char **c_ptr = NULL;
    int num;
    if (fill_array(&c_ptr, &num) != 0) {
          cout << "Error" << endl;
    }
    for (int i = 0; i < num; i++) {
       cout << "Str[" << i << "] = " << c_ptr[i] << endl;
    } 
    // free double pointer..

    // Function implementation 
    int fill_array(char ***c_ptr, int *num) {
        vector<string> v = {"haha", "hehe", "omg", "happy, learning!"};
        *num = v.size();
        int i = 0;

        *c_ptr = (char **)malloc(*num * sizeof(char *));
        for (vector<string>::iterator it = v.begin(); it != v.end(); it++, i++) {
            c_ptr[i] = (char*)malloc((*it).size() + 1);
            strncpy(*c_ptr[i], (*it).c_str(),(*it).size() + 1);
        }
        return 0;
    }

结果

Str[0] = haha
Str[1] = hehe
Str[2] = omg
Str[3] = happy, learning!

此外,数组中的空括号有什么用?编程习惯与动态分配相比是否良好?

1 个答案:

答案 0 :(得分:0)

**是指向指针的指针,或者我们可以说它是一个双指针。

当我们将指针变量从main()或简单的函数传递给另一个函数时,最好使用双指针。

通过查看您的代码,我想建议您一件事,那就是避免使用全局变量。