实例介绍
【实例截图】
【核心代码】
.
├── protobuf-2.5.0
│ ├── CHANGES.txt
│ ├── CONTRIBUTORS.txt
│ ├── COPYING.txt
│ ├── INSTALL.txt
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── README.txt
│ ├── aclocal.m4
│ ├── autogen.sh
│ ├── config.guess
│ ├── config.h.in
│ ├── config.sub
│ ├── configure
│ ├── configure.ac
│ ├── depcomp
│ ├── editors
│ │ ├── README.txt
│ │ ├── proto.vim
│ │ └── protobuf-mode.el
│ ├── examples
│ │ ├── AddPerson.java
│ │ ├── ListPeople.java
│ │ ├── Makefile
│ │ ├── README.txt
│ │ ├── add_person.cc
│ │ ├── add_person.py
│ │ ├── addressbook.proto
│ │ ├── list_people.cc
│ │ └── list_people.py
│ ├── generate_descriptor_proto.sh
│ ├── gtest
│ │ ├── CHANGES
│ │ ├── CMakeLists.txt
│ │ ├── CONTRIBUTORS
│ │ ├── LICENSE
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── README
│ │ ├── aclocal.m4
│ │ ├── build-aux
│ │ │ ├── config.guess
│ │ │ ├── config.h.in
│ │ │ ├── config.sub
│ │ │ ├── depcomp
│ │ │ ├── install-sh
│ │ │ ├── ltmain.sh
│ │ │ └── missing
│ │ ├── cmake
│ │ │ └── internal_utils.cmake
│ │ ├── codegear
│ │ │ ├── gtest.cbproj
│ │ │ ├── gtest.groupproj
│ │ │ ├── gtest_all.cc
│ │ │ ├── gtest_link.cc
│ │ │ ├── gtest_main.cbproj
│ │ │ └── gtest_unittest.cbproj
│ │ ├── configure
│ │ ├── configure.ac
│ │ ├── fused-src
│ │ │ └── gtest
│ │ │ ├── gtest-all.cc
│ │ │ ├── gtest.h
│ │ │ └── gtest_main.cc
│ │ ├── include
│ │ │ └── gtest
│ │ │ ├── gtest-death-test.h
│ │ │ ├── gtest-message.h
│ │ │ ├── gtest-param-test.h
│ │ │ ├── gtest-param-test.h.pump
│ │ │ ├── gtest-printers.h
│ │ │ ├── gtest-spi.h
│ │ │ ├── gtest-test-part.h
│ │ │ ├── gtest-typed-test.h
│ │ │ ├── gtest.h
│ │ │ ├── gtest_pred_impl.h
│ │ │ ├── gtest_prod.h
│ │ │ └── internal
│ │ │ ├── gtest-death-test-internal.h
│ │ │ ├── gtest-filepath.h
│ │ │ ├── gtest-internal.h
│ │ │ ├── gtest-linked_ptr.h
│ │ │ ├── gtest-param-util-generated.h
│ │ │ ├── gtest-param-util-generated.h.pump
│ │ │ ├── gtest-param-util.h
│ │ │ ├── gtest-port.h
│ │ │ ├── gtest-string.h
│ │ │ ├── gtest-tuple.h
│ │ │ ├── gtest-tuple.h.pump
│ │ │ ├── gtest-type-util.h
│ │ │ └── gtest-type-util.h.pump
│ │ ├── m4
│ │ │ ├── acx_pthread.m4
│ │ │ ├── gtest.m4
│ │ │ ├── libtool.m4
│ │ │ ├── ltoptions.m4
│ │ │ ├── ltsugar.m4
│ │ │ ├── ltversion.m4
│ │ │ └── lt~obsolete.m4
│ │ ├── make
│ │ │ └── Makefile
│ │ ├── msvc
│ │ │ ├── gtest-md.sln
│ │ │ ├── gtest-md.vcproj
│ │ │ ├── gtest.sln
│ │ │ ├── gtest.vcproj
│ │ │ ├── gtest_main-md.vcproj
│ │ │ ├── gtest_main.vcproj
│ │ │ ├── gtest_prod_test-md.vcproj
│ │ │ ├── gtest_prod_test.vcproj
│ │ │ ├── gtest_unittest-md.vcproj
│ │ │ └── gtest_unittest.vcproj
│ │ ├── samples
│ │ │ ├── prime_tables.h
│ │ │ ├── sample1.cc
│ │ │ ├── sample1.h
│ │ │ ├── sample10_unittest.cc
│ │ │ ├── sample1_unittest.cc
│ │ │ ├── sample2.cc
│ │ │ ├── sample2.h
│ │ │ ├── sample2_unittest.cc
│ │ │ ├── sample3-inl.h
│ │ │ ├── sample3_unittest.cc
│ │ │ ├── sample4.cc
│ │ │ ├── sample4.h
│ │ │ ├── sample4_unittest.cc
│ │ │ ├── sample5_unittest.cc
│ │ │ ├── sample6_unittest.cc
│ │ │ ├── sample7_unittest.cc
│ │ │ ├── sample8_unittest.cc
│ │ │ └── sample9_unittest.cc
│ │ ├── scripts
│ │ │ ├── fuse_gtest_files.py
│ │ │ ├── gen_gtest_pred_impl.py
│ │ │ ├── gtest-config.in
│ │ │ ├── pump.py
│ │ │ └── test
│ │ │ └── Makefile
│ │ ├── src
│ │ │ ├── gtest-all.cc
│ │ │ ├── gtest-death-test.cc
│ │ │ ├── gtest-filepath.cc
│ │ │ ├── gtest-internal-inl.h
│ │ │ ├── gtest-port.cc
│ │ │ ├── gtest-printers.cc
│ │ │ ├── gtest-test-part.cc
│ │ │ ├── gtest-typed-test.cc
│ │ │ ├── gtest.cc
│ │ │ └── gtest_main.cc
│ │ ├── test
│ │ │ ├── gtest-death-test_ex_test.cc
│ │ │ ├── gtest-death-test_test.cc
│ │ │ ├── gtest-filepath_test.cc
│ │ │ ├── gtest-linked_ptr_test.cc
│ │ │ ├── gtest-listener_test.cc
│ │ │ ├── gtest-message_test.cc
│ │ │ ├── gtest-options_test.cc
│ │ │ ├── gtest-param-test2_test.cc
│ │ │ ├── gtest-param-test_test.cc
│ │ │ ├── gtest-param-test_test.h
│ │ │ ├── gtest-port_test.cc
│ │ │ ├── gtest-printers_test.cc
│ │ │ ├── gtest-test-part_test.cc
│ │ │ ├── gtest-tuple_test.cc
│ │ │ ├── gtest-typed-test2_test.cc
│ │ │ ├── gtest-typed-test_test.cc
│ │ │ ├── gtest-typed-test_test.h
│ │ │ ├── gtest-unittest-api_test.cc
│ │ │ ├── gtest_all_test.cc
│ │ │ ├── gtest_break_on_failure_unittest.py
│ │ │ ├── gtest_break_on_failure_unittest_.cc
│ │ │ ├── gtest_catch_exceptions_test.py
│ │ │ ├── gtest_catch_exceptions_test_.cc
│ │ │ ├── gtest_color_test.py
│ │ │ ├── gtest_color_test_.cc
│ │ │ ├── gtest_env_var_test.py
│ │ │ ├── gtest_env_var_test_.cc
│ │ │ ├── gtest_environment_test.cc
│ │ │ ├── gtest_filter_unittest.py
│ │ │ ├── gtest_filter_unittest_.cc
│ │ │ ├── gtest_help_test.py
│ │ │ ├── gtest_help_test_.cc
│ │ │ ├── gtest_list_tests_unittest.py
│ │ │ ├── gtest_list_tests_unittest_.cc
│ │ │ ├── gtest_main_unittest.cc
│ │ │ ├── gtest_no_test_unittest.cc
│ │ │ ├── gtest_output_test.py
│ │ │ ├── gtest_output_test_.cc
│ │ │ ├── gtest_output_test_golden_lin.txt
│ │ │ ├── gtest_pred_impl_unittest.cc
│ │ │ ├── gtest_prod_test.cc
│ │ │ ├── gtest_repeat_test.cc
│ │ │ ├── gtest_shuffle_test.py
│ │ │ ├── gtest_shuffle_test_.cc
│ │ │ ├── gtest_sole_header_test.cc
│ │ │ ├── gtest_stress_test.cc
│ │ │ ├── gtest_test_utils.py
│ │ │ ├── gtest_throw_on_failure_ex_test.cc
│ │ │ ├── gtest_throw_on_failure_test.py
│ │ │ ├── gtest_throw_on_failure_test_.cc
│ │ │ ├── gtest_uninitialized_test.py
│ │ │ ├── gtest_uninitialized_test_.cc
│ │ │ ├── gtest_unittest.cc
│ │ │ ├── gtest_xml_outfile1_test_.cc
│ │ │ ├── gtest_xml_outfile2_test_.cc
│ │ │ ├── gtest_xml_outfiles_test.py
│ │ │ ├── gtest_xml_output_unittest.py
│ │ │ ├── gtest_xml_output_unittest_.cc
│ │ │ ├── gtest_xml_test_utils.py
│ │ │ ├── production.cc
│ │ │ └── production.h
│ │ └── xcode
│ │ ├── Config
│ │ │ ├── DebugProject.xcconfig
│ │ │ ├── FrameworkTarget.xcconfig
│ │ │ ├── General.xcconfig
│ │ │ ├── ReleaseProject.xcconfig
│ │ │ ├── StaticLibraryTarget.xcconfig
│ │ │ └── TestTarget.xcconfig
│ │ ├── Resources
│ │ │ └── Info.plist
│ │ ├── Samples
│ │ │ └── FrameworkSample
│ │ │ ├── Info.plist
│ │ │ ├── WidgetFramework.xcodeproj
│ │ │ │ └── project.pbxproj
│ │ │ ├── runtests.sh
│ │ │ ├── widget.cc
│ │ │ ├── widget.h
│ │ │ └── widget_test.cc
│ │ ├── Scripts
│ │ │ ├── runtests.sh
│ │ │ └── versiongenerate.py
│ │ └── gtest.xcodeproj
│ │ └── project.pbxproj
│ ├── install-sh
│ ├── java
│ │ ├── README.txt
│ │ ├── pom.xml
│ │ └── src
│ │ ├── main
│ │ │ └── java
│ │ │ └── com
│ │ │ └── google
│ │ │ └── protobuf
│ │ │ ├── AbstractMessage.java
│ │ │ ├── AbstractMessageLite.java
│ │ │ ├── AbstractParser.java
│ │ │ ├── BlockingRpcChannel.java
│ │ │ ├── BlockingService.java
│ │ │ ├── BoundedByteString.java
│ │ │ ├── ByteString.java
│ │ │ ├── CodedInputStream.java
│ │ │ ├── CodedOutputStream.java
│ │ │ ├── Descriptors.java
│ │ │ ├── DynamicMessage.java
│ │ │ ├── ExtensionRegistry.java
│ │ │ ├── ExtensionRegistryLite.java
│ │ │ ├── FieldSet.java
│ │ │ ├── GeneratedMessage.java
│ │ │ ├── GeneratedMessageLite.java
│ │ │ ├── Internal.java
│ │ │ ├── InvalidProtocolBufferException.java
│ │ │ ├── LazyField.java
│ │ │ ├── LazyStringArrayList.java
│ │ │ ├── LazyStringList.java
│ │ │ ├── LiteralByteString.java
│ │ │ ├── Message.java
│ │ │ ├── MessageLite.java
│ │ │ ├── MessageLiteOrBuilder.java
│ │ │ ├── MessageOrBuilder.java
│ │ │ ├── Parser.java
│ │ │ ├── ProtocolMessageEnum.java
│ │ │ ├── RepeatedFieldBuilder.java
│ │ │ ├── RopeByteString.java
│ │ │ ├── RpcCallback.java
│ │ │ ├── RpcChannel.java
│ │ │ ├── RpcController.java
│ │ │ ├── RpcUtil.java
│ │ │ ├── Service.java
│ │ │ ├── ServiceException.java
│ │ │ ├── SingleFieldBuilder.java
│ │ │ ├── SmallSortedMap.java
│ │ │ ├── TextFormat.java
│ │ │ ├── UninitializedMessageException.java
│ │ │ ├── UnknownFieldSet.java
│ │ │ ├── UnmodifiableLazyStringList.java
│ │ │ ├── Utf8.java
│ │ │ └── WireFormat.java
│ │ └── test
│ │ └── java
│ │ └── com
│ │ └── google
│ │ └── protobuf
│ │ ├── AbstractMessageTest.java
│ │ ├── BoundedByteStringTest.java
│ │ ├── ByteStringTest.java
│ │ ├── CodedInputStreamTest.java
│ │ ├── CodedOutputStreamTest.java
│ │ ├── DeprecatedFieldTest.java
│ │ ├── DescriptorsTest.java
│ │ ├── DynamicMessageTest.java
│ │ ├── ForceFieldBuildersPreRun.java
│ │ ├── GeneratedMessageTest.java
│ │ ├── IsValidUtf8Test.java
│ │ ├── IsValidUtf8TestUtil.java
│ │ ├── LazyStringArrayListTest.java
│ │ ├── LazyStringEndToEndTest.java
│ │ ├── LiteTest.java
│ │ ├── LiteralByteStringTest.java
│ │ ├── MessageTest.java
│ │ ├── NestedBuildersTest.java
│ │ ├── ParserTest.java
│ │ ├── RepeatedFieldBuilderTest.java
│ │ ├── RopeByteStringSubstringTest.java
│ │ ├── RopeByteStringTest.java
│ │ ├── ServiceTest.java
│ │ ├── SingleFieldBuilderTest.java
│ │ ├── SmallSortedMapTest.java
│ │ ├── TestBadIdentifiers.java
│ │ ├── TestUtil.java
│ │ ├── TextFormatTest.java
│ │ ├── UnknownFieldSetTest.java
│ │ ├── UnmodifiableLazyStringListTest.java
│ │ ├── WireFormatTest.java
│ │ ├── multiple_files_test.proto
│ │ ├── nested_builders_test.proto
│ │ ├── nested_extension.proto
│ │ ├── nested_extension_lite.proto
│ │ ├── non_nested_extension.proto
│ │ ├── non_nested_extension_lite.proto
│ │ └── test_bad_identifiers.proto
│ ├── ltmain.sh
│ ├── m4
│ │ ├── ac_system_extensions.m4
│ │ ├── acx_check_suncc.m4
│ │ ├── acx_pthread.m4
│ │ ├── libtool.m4
│ │ ├── ltoptions.m4
│ │ ├── ltsugar.m4
│ │ ├── ltversion.m4
│ │ ├── lt~obsolete.m4
│ │ └── stl_hash.m4
│ ├── missing
│ ├── protobuf-lite.pc.in
│ ├── protobuf.pc.in
│ ├── python
│ │ ├── README.txt
│ │ ├── ez_setup.py
│ │ ├── google
│ │ │ ├── __init__.py
│ │ │ └── protobuf
│ │ │ ├── __init__.py
│ │ │ ├── descriptor.py
│ │ │ ├── descriptor_database.py
│ │ │ ├── descriptor_pool.py
│ │ │ ├── internal
│ │ │ │ ├── __init__.py
│ │ │ │ ├── api_implementation.py
│ │ │ │ ├── containers.py
│ │ │ │ ├── cpp_message.py
│ │ │ │ ├── decoder.py
│ │ │ │ ├── descriptor_database_test.py
│ │ │ │ ├── descriptor_pool_test.py
│ │ │ │ ├── descriptor_test.py
│ │ │ │ ├── encoder.py
│ │ │ │ ├── enum_type_wrapper.py
│ │ │ │ ├── factory_test1.proto
│ │ │ │ ├── factory_test2.proto
│ │ │ │ ├── generator_test.py
│ │ │ │ ├── message_cpp_test.py
│ │ │ │ ├── message_factory_test.py
│ │ │ │ ├── message_listener.py
│ │ │ │ ├── message_test.py
│ │ │ │ ├── more_extensions.proto
│ │ │ │ ├── more_extensions_dynamic.proto
│ │ │ │ ├── more_messages.proto
│ │ │ │ ├── python_message.py
│ │ │ │ ├── reflection_cpp_generated_test.py
│ │ │ │ ├── reflection_test.py
│ │ │ │ ├── service_reflection_test.py
│ │ │ │ ├── test_bad_identifiers.proto
│ │ │ │ ├── test_util.py
│ │ │ │ ├── text_format_test.py
│ │ │ │ ├── type_checkers.py
│ │ │ │ ├── unknown_fields_test.py
│ │ │ │ ├── wire_format.py
│ │ │ │ └── wire_format_test.py
│ │ │ ├── message.py
│ │ │ ├── message_factory.py
│ │ │ ├── pyext
│ │ │ │ ├── python-proto2.cc
│ │ │ │ ├── python_descriptor.cc
│ │ │ │ ├── python_descriptor.h
│ │ │ │ ├── python_protobuf.cc
│ │ │ │ └── python_protobuf.h
│ │ │ ├── reflection.py
│ │ │ ├── service.py
│ │ │ ├── service_reflection.py
│ │ │ └── text_format.py
│ │ ├── mox.py
│ │ ├── setup.py
│ │ └── stubout.py
│ ├── src
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── google
│ │ │ └── protobuf
│ │ │ ├── compiler
│ │ │ │ ├── code_generator.cc
│ │ │ │ ├── code_generator.h
│ │ │ │ ├── command_line_interface.cc
│ │ │ │ ├── command_line_interface.h
│ │ │ │ ├── command_line_interface_unittest.cc
│ │ │ │ ├── cpp
│ │ │ │ │ ├── cpp_bootstrap_unittest.cc
│ │ │ │ │ ├── cpp_enum.cc
│ │ │ │ │ ├── cpp_enum.h
│ │ │ │ │ ├── cpp_enum_field.cc
│ │ │ │ │ ├── cpp_enum_field.h
│ │ │ │ │ ├── cpp_extension.cc
│ │ │ │ │ ├── cpp_extension.h
│ │ │ │ │ ├── cpp_field.cc
│ │ │ │ │ ├── cpp_field.h
│ │ │ │ │ ├── cpp_file.cc
│ │ │ │ │ ├── cpp_file.h
│ │ │ │ │ ├── cpp_generator.cc
│ │ │ │ │ ├── cpp_generator.h
│ │ │ │ │ ├── cpp_helpers.cc
│ │ │ │ │ ├── cpp_helpers.h
│ │ │ │ │ ├── cpp_message.cc
│ │ │ │ │ ├── cpp_message.h
│ │ │ │ │ ├── cpp_message_field.cc
│ │ │ │ │ ├── cpp_message_field.h
│ │ │ │ │ ├── cpp_options.h
│ │ │ │ │ ├── cpp_plugin_unittest.cc
│ │ │ │ │ ├── cpp_primitive_field.cc
│ │ │ │ │ ├── cpp_primitive_field.h
│ │ │ │ │ ├── cpp_service.cc
│ │ │ │ │ ├── cpp_service.h
│ │ │ │ │ ├── cpp_string_field.cc
│ │ │ │ │ ├── cpp_string_field.h
│ │ │ │ │ ├── cpp_test_bad_identifiers.proto
│ │ │ │ │ ├── cpp_unittest.cc
│ │ │ │ │ └── cpp_unittest.h
│ │ │ │ ├── importer.cc
│ │ │ │ ├── importer.h
│ │ │ │ ├── importer_unittest.cc
│ │ │ │ ├── java
│ │ │ │ │ ├── java_doc_comment.cc
│ │ │ │ │ ├── java_doc_comment.h
│ │ │ │ │ ├── java_doc_comment_unittest.cc
│ │ │ │ │ ├── java_enum.cc
│ │ │ │ │ ├── java_enum.h
│ │ │ │ │ ├── java_enum_field.cc
│ │ │ │ │ ├── java_enum_field.h
│ │ │ │ │ ├── java_extension.cc
│ │ │ │ │ ├── java_extension.h
│ │ │ │ │ ├── java_field.cc
│ │ │ │ │ ├── java_field.h
│ │ │ │ │ ├── java_file.cc
│ │ │ │ │ ├── java_file.h
│ │ │ │ │ ├── java_generator.cc
│ │ │ │ │ ├── java_generator.h
│ │ │ │ │ ├── java_helpers.cc
│ │ │ │ │ ├── java_helpers.h
│ │ │ │ │ ├── java_message.cc
│ │ │ │ │ ├── java_message.h
│ │ │ │ │ ├── java_message_field.cc
│ │ │ │ │ ├── java_message_field.h
│ │ │ │ │ ├── java_plugin_unittest.cc
│ │ │ │ │ ├── java_primitive_field.cc
│ │ │ │ │ ├── java_primitive_field.h
│ │ │ │ │ ├── java_service.cc
│ │ │ │ │ ├── java_service.h
│ │ │ │ │ ├── java_string_field.cc
│ │ │ │ │ └── java_string_field.h
│ │ │ │ ├── main.cc
│ │ │ │ ├── mock_code_generator.cc
│ │ │ │ ├── mock_code_generator.h
│ │ │ │ ├── package_info.h
│ │ │ │ ├── parser.cc
│ │ │ │ ├── parser.h
│ │ │ │ ├── parser_unittest.cc
│ │ │ │ ├── plugin.cc
│ │ │ │ ├── plugin.h
│ │ │ │ ├── plugin.pb.cc
│ │ │ │ ├── plugin.pb.h
│ │ │ │ ├── plugin.proto
│ │ │ │ ├── python
│ │ │ │ │ ├── python_generator.cc
│ │ │ │ │ ├── python_generator.h
│ │ │ │ │ └── python_plugin_unittest.cc
│ │ │ │ ├── subprocess.cc
│ │ │ │ ├── subprocess.h
│ │ │ │ ├── test_plugin.cc
│ │ │ │ ├── zip_output_unittest.sh
│ │ │ │ ├── zip_writer.cc
│ │ │ │ └── zip_writer.h
│ │ │ ├── descriptor.cc
│ │ │ ├── descriptor.h
│ │ │ ├── descriptor.pb.cc
│ │ │ ├── descriptor.pb.h
│ │ │ ├── descriptor.proto
│ │ │ ├── descriptor_database.cc
│ │ │ ├── descriptor_database.h
│ │ │ ├── descriptor_database_unittest.cc
│ │ │ ├── descriptor_unittest.cc
│ │ │ ├── dynamic_message.cc
│ │ │ ├── dynamic_message.h
│ │ │ ├── dynamic_message_unittest.cc
│ │ │ ├── extension_set.cc
│ │ │ ├── extension_set.h
│ │ │ ├── extension_set_heavy.cc
│ │ │ ├── extension_set_unittest.cc
│ │ │ ├── generated_enum_reflection.h
│ │ │ ├── generated_message_reflection.cc
│ │ │ ├── generated_message_reflection.h
│ │ │ ├── generated_message_reflection_unittest.cc
│ │ │ ├── generated_message_util.cc
│ │ │ ├── generated_message_util.h
│ │ │ ├── io
│ │ │ │ ├── coded_stream.cc
│ │ │ │ ├── coded_stream.h
│ │ │ │ ├── coded_stream_inl.h
│ │ │ │ ├── coded_stream_unittest.cc
│ │ │ │ ├── gzip_stream.cc
│ │ │ │ ├── gzip_stream.h
│ │ │ │ ├── gzip_stream_unittest.sh
│ │ │ │ ├── package_info.h
│ │ │ │ ├── printer.cc
│ │ │ │ ├── printer.h
│ │ │ │ ├── printer_unittest.cc
│ │ │ │ ├── tokenizer.cc
│ │ │ │ ├── tokenizer.h
│ │ │ │ ├── tokenizer_unittest.cc
│ │ │ │ ├── zero_copy_stream.cc
│ │ │ │ ├── zero_copy_stream.h
│ │ │ │ ├── zero_copy_stream_impl.cc
│ │ │ │ ├── zero_copy_stream_impl.h
│ │ │ │ ├── zero_copy_stream_impl_lite.cc
│ │ │ │ ├── zero_copy_stream_impl_lite.h
│ │ │ │ └── zero_copy_stream_unittest.cc
│ │ │ ├── lite_unittest.cc
│ │ │ ├── message.cc
│ │ │ ├── message.h
│ │ │ ├── message_lite.cc
│ │ │ ├── message_lite.h
│ │ │ ├── message_unittest.cc
│ │ │ ├── package_info.h
│ │ │ ├── reflection_ops.cc
│ │ │ ├── reflection_ops.h
│ │ │ ├── reflection_ops_unittest.cc
│ │ │ ├── repeated_field.cc
│ │ │ ├── repeated_field.h
│ │ │ ├── repeated_field_reflection_unittest.cc
│ │ │ ├── repeated_field_unittest.cc
│ │ │ ├── service.cc
│ │ │ ├── service.h
│ │ │ ├── stubs
│ │ │ │ ├── atomicops.h
│ │ │ │ ├── atomicops_internals_arm_gcc.h
│ │ │ │ ├── atomicops_internals_arm_qnx.h
│ │ │ │ ├── atomicops_internals_atomicword_compat.h
│ │ │ │ ├── atomicops_internals_macosx.h
│ │ │ │ ├── atomicops_internals_mips_gcc.h
│ │ │ │ ├── atomicops_internals_pnacl.h
│ │ │ │ ├── atomicops_internals_x86_gcc.cc
│ │ │ │ ├── atomicops_internals_x86_gcc.h
│ │ │ │ ├── atomicops_internals_x86_msvc.cc
│ │ │ │ ├── atomicops_internals_x86_msvc.h
│ │ │ │ ├── common.cc
│ │ │ │ ├── common.h
│ │ │ │ ├── common_unittest.cc
│ │ │ │ ├── hash.h
│ │ │ │ ├── map-util.h
│ │ │ │ ├── once.cc
│ │ │ │ ├── once.h
│ │ │ │ ├── once_unittest.cc
│ │ │ │ ├── platform_macros.h
│ │ │ │ ├── stl_util.h
│ │ │ │ ├── stringprintf.cc
│ │ │ │ ├── stringprintf.h
│ │ │ │ ├── stringprintf_unittest.cc
│ │ │ │ ├── structurally_valid.cc
│ │ │ │ ├── structurally_valid_unittest.cc
│ │ │ │ ├── strutil.cc
│ │ │ │ ├── strutil.h
│ │ │ │ ├── strutil_unittest.cc
│ │ │ │ ├── substitute.cc
│ │ │ │ ├── substitute.h
│ │ │ │ ├── template_util.h
│ │ │ │ ├── template_util_unittest.cc
│ │ │ │ ├── type_traits.h
│ │ │ │ └── type_traits_unittest.cc
│ │ │ ├── test_util.cc
│ │ │ ├── test_util.h
│ │ │ ├── test_util_lite.cc
│ │ │ ├── test_util_lite.h
│ │ │ ├── testdata
│ │ │ │ ├── golden_message
│ │ │ │ ├── golden_packed_fields_message
│ │ │ │ ├── text_format_unittest_data.txt
│ │ │ │ └── text_format_unittest_extensions_data.txt
│ │ │ ├── testing
│ │ │ │ ├── file.cc
│ │ │ │ ├── file.h
│ │ │ │ ├── googletest.cc
│ │ │ │ ├── googletest.h
│ │ │ │ ├── zcgunzip.cc
│ │ │ │ └── zcgzip.cc
│ │ │ ├── text_format.cc
│ │ │ ├── text_format.h
│ │ │ ├── text_format_unittest.cc
│ │ │ ├── unittest.proto
│ │ │ ├── unittest_custom_options.proto
│ │ │ ├── unittest_embed_optimize_for.proto
│ │ │ ├── unittest_empty.proto
│ │ │ ├── unittest_enormous_descriptor.proto
│ │ │ ├── unittest_import.proto
│ │ │ ├── unittest_import_lite.proto
│ │ │ ├── unittest_import_public.proto
│ │ │ ├── unittest_import_public_lite.proto
│ │ │ ├── unittest_lite.proto
│ │ │ ├── unittest_lite_imports_nonlite.proto
│ │ │ ├── unittest_mset.proto
│ │ │ ├── unittest_no_generic_services.proto
│ │ │ ├── unittest_optimize_for.proto
│ │ │ ├── unknown_field_set.cc
│ │ │ ├── unknown_field_set.h
│ │ │ ├── unknown_field_set_unittest.cc
│ │ │ ├── wire_format.cc
│ │ │ ├── wire_format.h
│ │ │ ├── wire_format_lite.cc
│ │ │ ├── wire_format_lite.h
│ │ │ ├── wire_format_lite_inl.h
│ │ │ └── wire_format_unittest.cc
│ │ └── solaris
│ │ └── libstdc .la
│ └── vsprojects
│ ├── config.h
│ ├── convert2008to2005.sh
│ ├── extract_includes.bat
│ ├── libprotobuf-lite.vcproj
│ ├── libprotobuf.vcproj
│ ├── libprotoc.vcproj
│ ├── lite-test.vcproj
│ ├── protobuf.sln
│ ├── protoc.vcproj
│ ├── readme.txt
│ ├── test_plugin.vcproj
│ └── tests.vcproj
└── 好例子网_protobuf-2.5.0.tar.gz
59 directories, 594 files
相关软件
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论