26

我从数据库函数返回一个字符串或 NULL 到主程序,有时我从异常中得到这个错误:

basic_string::_S_construct NULL not valid

我认为是因为数据库函数返回 NULL 值?有任何想法吗???

string database(string& ip, string& agent){
  //this is just for explanation
  .....
  ....

  return NULL or return string

}

int main(){
   string ip,host,proto,method,agent,request,newdec;
   httplog.open("/var/log/redirect/httplog.log", ios::app);

   try{
      ip = getenv("IP");
      host = getenv("CLIENT[host]");
      proto = getenv("HTTP_PROTO");
      method = getenv("HTTP_METHOD");
      agent = getenv("CLIENT[user-agent]");

      if (std::string::npos != host.find(string("dmnfmsdn.com")))
         return 0;

      if (std::string::npos != host.find(string("sdsdsds.com")))
         return 0;

      if (method=="POST")
         return 0;

      newdec = database(ip,agent);
      if (newdec.empty())
         return 0;
      else {
         httplog << "Redirecting to splash page for user IP: " << ip << endl;
         cout << newdec;
         cout.flush();
      }
      httplog.close();
      return 0; 
   }
   catch (exception& e){
      httplog << "Exception occurred in script: " << e.what() << endl;
      return 0;
   }
   return 0;
}
4

3 回答 3

31

您不能从声明为返回的函数中返回NULL(或),因为没有适当的隐式转换。您可能希望返回一个空字符串0string

return string();

或者

return "";

如果您希望能够区NULL分值和空字符串,那么您将不得不使用指针(最好是智能指针),或者,您可以使用std::optional(或boost::optional在 C++17 之前)。

于 2012-08-21T10:33:33.763 回答
14

从空指针构造它是违反std::string' 合同的。char如果要从中构造它的指针为空,则只需返回一个空字符串。

例如

return p == NULL ? std::string() : std::string(p);
于 2012-08-21T10:34:00.910 回答
2

我会尝试将其更改为返回一个空字符串而不是 null 并检查字符串长度。

于 2012-08-21T10:33:57.450 回答