タグ

JSONとSTLに関するiwwのブックマーク (1)

  • json.h (jsonパーサ) - binzume.net


    C++JSONpicojson使 NYSL  include使 STL    #include <iostream> #include "json.h" using namespace std; int main(int argc,int argv[]) { string s = "[1,null,[31 , 32, \"asdfg\\\"hjk\" , {\"hoge\" : -123e6 },123 ],null,5,0]"; json::jsvalue v; json::parse(v, s);
  • 1