Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
json
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
json
Commits
25d205c1
Unverified
Commit
25d205c1
authored
Dec 06, 2017
by
Niels Lohmann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
📝
clarified difference between serialization and string value retrieval #853
parent
fa76f2ef
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
0 deletions
+23
-0
README.md
README.md
+23
-0
No files found.
README.md
View file @
25d205c1
...
...
@@ -207,6 +207,29 @@ std::cout << j.dump(4) << std::endl;
// }
```
Note the difference between serialization and assignment:
```
cpp
// store a string in a JSON value
json
j_string
=
"this is a string"
;
// retrieve the string value (implicit JSON to std::string conversion)
std
::
string
cpp_string
=
j_string
;
// retrieve the string value (explicit JSON to std::string conversion)
auto
cpp_string2
=
j_string
.
get
<
std
::
string
>
();
// retrieve the serialized value (explicit JSON serialization)
std
::
string
serialized_string
=
j_string
.
dump
();
// output of original string
std
::
cout
<<
cpp_string
<<
" == "
<<
cpp_string2
<<
" == "
<<
j_string
.
get
<
std
::
string
>
()
<<
'\n'
;
// output of serialized value
std
::
cout
<<
j_string
<<
" == "
<<
serialized_string
<<
std
::
endl
;
```
`.dump()`
always returns the serialized value, and
`.get<std::string>()`
returns the originally stored string value.
#### To/from streams (e.g. files, string streams)
You can also use streams to serialize and deserialize:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment