Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我只是想知道我应该如何将指针的内容存储到变量中,特别是类似于以下内容的内容:
somethingpoint = getenv(somethingsomething);
该指针将引用一个字符串。
您需要声明一个指针变量,然后分配给它。您可以在一行代码中完成所有这些操作,如下所示:
const char *value = getenv(name);
我在const这里使用是因为getenv返回一个指向程序不能修改其内容的字符串的指针。使用const让编译器帮助我们履行该合同。
const
getenv
const char* test = getenv(pointerName);