Jsoncpp库的一个bug

前端之家收集整理的这篇文章主要介绍了Jsoncpp库的一个bug前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
Jsoncpp有个bug


定义全局对象Value并赋值,类似下面这样,在程序退出的时候会崩溃。
Value s_test;

int WINAPI WinMain(HINSTANCE s,HINSTANCE p,char * cmd,int show)
{
   s_test["aaa"] = 1;
}

原因是这里,在全局变量析构之前,这个静态变量已经析构了。
static ValueAllocator *&valueAllocator()
{
   static DefaultValueAllocator defaultAllocator;
   static ValueAllocator *valueAllocator = &defaultAllocator;
   return valueAllocator;
}

改成这样就ok了。
static ValueAllocator *&valueAllocator()
{
   static DefaultValueAllocator *defaultAllocator = NULL;
   if (defaultAllocator == NULL)
   {
   defaultAllocator = new DefaultValueAllocator;
   }   
   static ValueAllocator *valueAllocator = defaultAllocator;
   return valueAllocator;
} 
原文链接:https://www.f2er.com/json/289769.html

猜你在找的Json相关文章