在c_str(),length()和size()之间发现不一致

时间:2016-06-14 15:55:10

标签: c++ string null unordered-map c-strings

我正在使用std :: unordered_map数据结构从文本文件构建地图,使用< uint64_t id,BaseDevice device>。 BaseDevice是一个结构,包含64位id和字符串:

struct BaseDevice
{
public:
    uint64_t id;
    string ipAddress;
}

我读了一个文件(假设它写得正确)并按如下方式构建地图:

char buffer[1024];
ifstream fin(myfile.c_str());

while(fin.eof() == false)
{
  fin.getline(buffer, 1023);
  StringTokenizer st(buffer, " ");

  //Parse ID and address
  unsigned int id = atoi(st.nextToken().c_str()); //get ID
  string ipAddress = st.nextToken();  //get IP address

  //Create the local structure and add to the map
  BaseDevice dev;
  dev.id = id;
  dev.ipAddress = ipAddress;
  myMap[id] = dev;

  break;
}

奇怪的是,当我遍历我的地图时,ipAddress字符串似乎是(null),而length()和size()都不是。

unordered_map< string, BaseDevice >::const_iterator itr1;
for(itr1 = myMap.begin(); itr1 != myMap.end(); itr1++)
{
  const BaseDevice& device = itr1->second;
  fprintf(stdout, "id %lu ipAddress %s \n", myMap->first, device.ipAddress);
  printf("Length is %d \n", device.ipAddress.length());
  printf("Size is %d \n", device.ipAddress.size());

  /*
  OUTPUT:

  id 2 ipAddress (null)
  Length is 8  
  Size is 8
  */
}

我想问你:这怎么可能?难道我做错了什么?感谢。

1 个答案:

答案 0 :(得分:3)

您正在打印device.ipAddress,好像它是一个C字符串(带有%s格式说明符),这是不正确的,所以fprintf可能会在尝试打印时发生变化它。你应该这样做:

fprintf(stdout, "...%s...", device.ipAddress.c_str());

您也可以对std::cout执行相同操作:

std::cout << device.ipAddress << '\n';