<?xml version="1.0" encoding="utf-8"?>
<resources>
    <string name="">https://www.boost.org/doc/libs/release/libs/json/[image:https://raw.githubusercontent.com/CPPAlliance/json/master/doc/images/repo-logo-3.png[Boost.JSON]]</string>
    <string name="">分支</string>
    <string name="">https://github.com/boostorg/json/tree/master[`master`]</string>
    <string name="">https://github.com/boostorg/json/tree/develop[`develop`]</string>
    <string name="">https://azure.microsoft.com/en-us/services/devops/pipelines/[Azure]</string>
    <string name="">https://vinniefalco.visualstudio.com/json/_build/latest?definitionId=5&amp;branchName=master[image:https://img.shields.io/azure-devops/build/vinniefalco/2571d415-8cc8-4120-a762-c03a8eda0659/8/master[构建</string>
    <string name="">状态]] |https://vinniefalco.visualstudio.com/json/_build/latest?definitionId=8&amp;branchName=develop[image:https://img.shields.io/azure-devops/build/vinniefalco/2571d415-8cc8-4120-a762-c03a8eda0659/8/develop[Build Status]]</string>
    <string name="">文档</string>
    <string name="">https://www.boost.org/doc/libs/master/libs/json/[image:https://img.shields.io/badge/docs-master-brightgreen.svg[文档]]</string>
    <string name="">https://www.boost.org/doc/libs/develop/libs/json/[image:https://img.shields.io/badge/docs-develop-brightgreen.svg[文档]]</string>
    <string name="">https://drone.io/[Drone]</string>
    <string name="">https://drone.cpp.al/boostorg/json[image:https://drone.cpp.al/api/badges/boostorg/json/status.svg?ref=refs/heads/master[构建</string>
    <string name="">状态]] |https://drone.cpp.al/boostorg/json[image:https://drone.cpp.al/api/badges/boostorg/json/status.svg?ref=refs/heads/develop[构建状态]]</string>
    <string name="">Matrix</string>
    <string name="">http://www.boost.org/development/tests/master/developer/json.html[image:https://img.shields.io/badge/matrix-master-brightgreen.svg[测试矩阵]]</string>
    <string name="">http://www.boost.org/development/tests/develop/developer/json.html[image:https://img.shields.io/badge/matrix-develop-brightgreen.svg[测试矩阵]]</string>
    <string name="">模糊测试</string>
    <string name="">—</string>
    <string name="">https://github.com/boostorg/json/actions?query=workflow%3Afuzz+branch%3Adevelop[image:https://github.com/boostorg/json/workflows/fuzz/badge.svg?branch=develop[模糊测试]]</string>
    <string name="">https://ci.appveyor.com/[Appveyor]</string>
    <string name="">https://ci.appveyor.com/project/vinniefalco/cppalliance-json/branch/master[image:https://ci.appveyor.com/api/projects/status/8csswcnmfm798203?branch=master&amp;svg=true[状态</string>
    <string name="">状态]] |https://ci.appveyor.com/project/vinniefalco/cppalliance-json/branch/develop[image:https://ci.appveyor.com/api/projects/status/8csswcnmfm798203?branch=develop&amp;svg=true[构建状态]]</string>
    <string name="">https://codecov.io[codecov.io]</string>
    <string name="">https://codecov.io/gh/boostorg/json/branch/master[image:https://codecov.io/gh/boostorg/json/branch/master/graph/badge.svg[codecov]]</string>
    <string name="">https://codecov.io/gh/boostorg/json/branch/develop[image:https://codecov.io/gh/boostorg/json/branch/develop/graph/badge.svg[codecov]]</string>
    <string name="">Boost.JSON</string>
    <string name="">概述</string>
    <string name="">Boost.JSON 是一个可移植的 C++ 库，提供了实现 [JavaScript Object Notation](https://json.org/)（简称 “JSON”）的容器和算法，这是一种轻量级的数据交换格式。该格式易于人类读写，也易于机器解析和生成。该格式基于 JavaScript 编程语言的一个子集（[ECMA-262 标准](https://www.ecma-international.org/ecma-262/10.0/index.html)），目前已在 [RFC 8259](https://datatracker.ietf.org/doc/html/rfc8259) 中标准化。JSON 是一种独立于语言但使用 C 语言家族（包括 C、C++、C#、Java、JavaScript、Perl、Python 等）程序员熟悉的约定的文本格式。这些特性使 JSON 成为理想的数据交换语言。</string>
    <string name="">该库专注于一个常见且广泛使用的场景：解析和序列化到一个名为 `value` 的容器，或从中进行解析和序列化（该容器用于存储 JSON 类型）。任何构建的 `value` 都可以被序列化后再反序列化，并保证结果与原始值相等。使用该库生成的任何 JSON 输出，均可被大多数主流编程语言中的常见 JSON 实现正确读取。</string>
    <string name="">`value` 容器被设计为一种适合作为公共接口和库中词汇类型的组件，便于组合使用。该库将可表示的数据类型限制在绝大多数 JSON 实现（尤其是 JavaScript）普遍接受的范围内。解析器和序列化器均具备高性能，其基准性能达到或超过了同类优秀库的水平。对分配器的支持非常完善。使用这些类型的代码将易于理解、灵活且高效。</string>
    <string name="">Boost.JSON 提供以下特性：</string>
    <string name="">快速编译</string>
    <string name="">仅需 C++11</string>
    <string name="">高性能流式解析器和序列化器</string>
    <string name="">对象的常量时间键查找</string>
    <string name="">允许非标准 JSON 的选项</string>
    <string name="">提供易于使用且安全的现代 API，并支持分配器</string>
    <string name="">可选的纯头文件方式，无需链接库</string>
    <string name="">若要获取完整文档请访问以下链接： https://boost.org/libs/json</string>
    <string name="">要求</string>
    <string name="">仅需 C++11</string>
    <string name="">可链接预构建的静态或动态 Boost 库，也可使用纯头文件方式</string>
    <string name="">（见下文）</string>
    <string name="">Supports -fno-exceptions（可自动检测）</string>
    <string name="">该库在其接口中大量依赖以下众所周知的 C++ 类型（以下称为 _standard types_）：</string>
    <string name="">`string_view`</string>
    <string name="">`memory_resource`, `polymorphic_allocator`</string>
    <string name="">`error_category`, `error_code`, `error_condition`, `system_error`</string>
    <string name="">纯头文件</string>
    <string name="">要使用纯头文件模式（即无需将程序链接到静态或动态的 Boost.JSON 库），只需在项目中恰好一个新建或现有源文件中添加以下行。</string>
    <string name="">MSVC 用户还必须定义宏 `BOOST_JSON_NO_LIB` ，以禁用自动链接。</string>
    <string name="">嵌入式</string>
    <string name="">Boost.JSON 在嵌入式设备上表现优异。该库使用局部栈缓冲区来提升某些操作的性能。在 Intel 平台上，这些缓冲区较大（4KB），而在非 Intel 平台上则较小（256 字节）。若要在嵌入式应用中调整栈缓冲区的大小，请在构建库或包含函数定义时定义以下宏：</string>
    <string name="">支持的编译器</string>
    <string name="">Boost.JSON 已在以下编译器上进行过测试：</string>
    <string name="">clang: 3.5, 3.6, 3.7, 3.8, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14</string>
    <string name="">gcc: 4.8, 4.9, 5, 6, 7, 8, 9, 10, 11, 12</string>
    <string name="">msvc: 14.0, 14.1, 14.2, 14.3</string>
    <string name="">支持的 JSON 文本</string>
    <string name="">该库要求输入文本使用 UTF-8 编码，这是 [RFC](https://datatracker.ietf.org/doc/html/rfc8259#section-8.1) 对系统间交换的所有 JSON 所规定的强制要求。同样，该库生成的文本也是有效的 UTF-8。</string>
    <string name="">RFC 不允许字节顺序标记（BOM）出现在 JSON 文本中，因此该库将 BOM 视为语法错误。</string>
    <string name="">该库支持多种流行的 JSON 扩展，但这些扩展必须显式启用。</string>
    <string name="">Visual Studio 解决方案</string>
    <string name="">质量保证</string>
    <string name="">该库的开发基础设施包括以下每次提交的分析：</string>
    <string name="">覆盖率报告</string>
    <string name="">基准性能比较</string>
    <string name="">在 Drone.io、Azure Pipelines 和 AppVeyor 上进行编译与测试</string>
    <string name="">使用 clang-llvm 和机器学习的模糊测试</string>
    <string name="">许可证</string>
    <string name="">根据 Boost 软件许可协议 1.0 版分发。（详见随附文件 LICENSE_1_0.txt 文件或访问 https://www.boost.org/LICENSE_1_0.txt ）</string>
</resources>
