gpt4 book ai didi

c++ - C/C++ : Constant array of constant arrays

转载 作者:太空狗 更新时间:2023-10-29 19:47:02 27 4
gpt4 key购买 nike

创建常量数组的常量数组的语法是什么?

我希望函数参数是常量 char* 字符串的常量数组。

最佳答案

您可以通过将 const 放在第一个星号的右侧来实现,例如

void f(const char *const *argument)

或等效

void f(const char *const argument[])

对于更多维度,只需添加更多 *const(在这种情况下我不会使用 [] 替代方案):

void f(const char *const *const *argument) // 2D array of strings

关于c++ - C/C++ : Constant array of constant arrays,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4590730/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com