Commit 3517aca3 authored by Milo Yip's avatar Milo Yip

Merge pull request #407 from fcharlie/master

doc: 自定义流应当使用 ParseStream 而不是 Parse
parents bc4551b5 ffd389be
...@@ -320,7 +320,7 @@ std::stringstream ss(json); ...@@ -320,7 +320,7 @@ std::stringstream ss(json);
IStreamWrapper is(ss); IStreamWrapper is(ss);
Document d; Document d;
d.Parse(is); d.ParseStream(is);
~~~~~~~~~~ ~~~~~~~~~~
但要注意,由于标准库的内部开销问,此实现的性能可能不如RapidJSON的内存/文件流。 但要注意,由于标准库的内部开销问,此实现的性能可能不如RapidJSON的内存/文件流。
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment