gpt4 book ai didi

c++ - 将 BloombergLP::blpapi::Name 转换为 const char *

转载 作者:太空狗 更新时间:2023-10-29 21:38:17 26 4
gpt4 key购买 nike

我正在开始一个涉及 Bloomberg API 的 C++ 项目。我已经能够获得要编译和链接的示例代码并且输出很好,但事实证明某些小的更改令人困惑。

例如,当试图访问一个元素的名称时,我使用

const char* holderString;
const Element fields = security.getElement(FIELD_DATA);
Element field = fields.getElement(1);
holderString = field.name();

最后一行触发了编译时错误

 "no suitable conversion function from "BloombergLP::blpapi::Name"
to "const char *" exists"

有什么建议吗?

最佳答案

field.name() 返回一个 BloombergLP::blpapi::Name 而不是 char *...

但是 Name 有一个 string method which returns a const char * .

关于c++ - 将 BloombergLP::blpapi::Name 转换为 const char *,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35734587/

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