mikefranklin 发表于 2017-6-19 10:16:43

string类型地址传递的问题

亲爱的大大们,string类型怎么做地址传递啊?
除了和char*互相转换的方法还有什么方法吗?最好改动尽可能小,因为类似的子函数还有好多。

main()
{
    deal_with_authtype_new (value, auth_type_ls, line);
    value_to_use=value;
}

void deal_with_authtype_new (string value, string auth_type_ls, vector<string>line)
{
    if ( strcmp(value.c_str(), "1029999") != 0 )
    {
      if (strcmp(value.c_str(), "1021111") == 0)
      {
            value = "0010111";
      }
      else if (strcmp(value.c_str(), "1020001") == 0)
      {
            value = "0030001";
      }
      else if (strcmp(value.c_str(), "1020004") == 0)
      {
            value = "0020001";
      }
      else if (strcmp(value.c_str(), "1020003") == 0)
      {
            value = "0020002";
      }
      else if (strcmp(value.c_str(), "1029997") == 0)
      {
            value = "0039997";
      }
      else{}

      auth_type_ls = value;
    }

    if ( line.size() != 0 )
    {
      if (atoi(line.c_str()) > 0)   //IP_TAG
      {
            value = "1029998";
      }
    }
}

mikefranklin 发表于 2017-6-19 10:50:22

已解决,谢谢各位。
页: [1]
查看完整版本: string类型地址传递的问题