从cql :: cql_byte_t * {aka unsigned char *}无效转换为const char *

时间:2013-10-23 18:01:49

标签: c++ pointers casting char bytearray

我试图从C ++中的字节数组中提取几个字节。我正在使用ntohs来提取前两个字节,这是我的schemaId ..所以我在{{1}中创建了一个方法将使用FileMapMgr ..

进行转换的类
ntohs

下面是我从上面的方法调用的FileMapMgr类中的方法 -

uint16_t newSchemaId;

for (size_t i = 0; i < result->column_count(); ++i) {
    cql::cql_byte_t* data = NULL;
    cql::cql_int_t size = 0;
    result->get_data(i, &data, size);

        int index=0;

        // this line gives me exception
        newSchemaId = FileMapMgr::get_uint16(&data[index]);
        index += 2;

        flag = false;
}

以下是我得到的例外 -

uint16_t FileMapMgr::get_uint16(const char* buffer)
{
    if (buffer)
    {
        return ntohs(*reinterpret_cast<const uint16_t*>(buffer));
    }
    return 0;
}

这里有什么我想念的吗?

我在这里为Cassandra使用libcql库。所以这个error: invalid conversion from cql::cql_byte_t* {aka unsigned char*} to const char* [-fpermissive] 来自libcql Cassandra库..

任何帮助都将受到赞赏..

1 个答案:

答案 0 :(得分:1)

编译器抱怨它无法将cql::cql_byte_t*转换为const char*。这显然是因为cql::cql_byte_t的别名为unsigned char

您可以在调用方法之前强制转换指针,也可以添加新方法以获取const unsigned char *

对于前者:

        // this line gives me exception
        newSchemaId = FileMapMgr::get_uint16(reinterpret_cast<char *>(&data[index]));

对于后者:

uint16_t FileMapMgr::get_uint16(const unsigned char* buffer)
{
    return get_uint16(reinterpret_cast<const char *>(buffer));
}