gpt4 book ai didi

c++ - 读取 float 并插入到 const char * 数组

转载 作者:行者123 更新时间:2023-11-30 00:48:51 25 4
gpt4 key购买 nike

我从一个文本文件中读取了几个值,例如

const float vLowCut   = cfg.get<float>("LowCut");
const float vLowCut1 = cfg.get<float>("LowCut1");
...

如何将它们附加到 const char 数组中,例如

const char * CutList[2] = {"value"+vLowCut, "value2"+vLowCut2)

当然上面这行是行不通的,只是想演示一下我想要的东西。谢谢

最佳答案

在这里使用 const char * 会很困难,因为您需要创建一个数组让它指向。 C++ 习惯用法会更方便:

std::string CutList[2] = {
"value" + std::to_string(vLowCut),
"value2" + std::to_string(vLowCut2)
};

关于c++ - 读取 float 并插入到 const char * 数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30509309/

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