返回介绍

1 C

2 C++

3 Windows

4 Linux

5 数据库

6 数据结构

7 算法

8 Qt

9 AS400

10 Web

12 C

13 框架

14 协议

15 工具

17 QA

14.3.1 Protobuf 在 vs2010 下配置

发布于 2023-10-02 20:38:15 字数 5948 浏览 0 评论 0 收藏 0

Google Protocol Buffer在vs2010下配置

1、从这里下载protobuf-2.6.1.tar.gz到桌面,并解压,解压后的文件夹为protobuf-2.6.1。(我的桌面为C:\Users\mcl\Desktop)

2 、进入文件夹protobuf-2.6.1\vsprojects\,用vs2010打开其中的sln文件,然后生成解决方案(然后这个vs就可以关闭了)。 之后在protobuf-2.6.1\vsprojects\Debug下会有一个protoc.exe,并且还有一些其他的lib文件等。

3、在你vc的lib文件夹下新建一个google文件夹,然后将protobuf-2.6.1\vsprojects\Debug下的全部文件都拷贝进去。

4、将C:\Users\mcl\Desktop\protobuf-2.6.1\src文件夹下的google文件夹拷贝到vs的include文件夹下。

5、新建一个vs工程,比如我在桌面上新建了一个GoogleProtoStudy的工程,然后将protobuf-2.6.1\examples下面的Makefile文件拷贝到GoogleProtoStudy\GoogleProtoStudy下(注意这个文件夹下应该有有vcxproj,filters等文件)。这个时候那个protobuf-2.6.1的文件夹可以全部删掉了。

6、接着在GoogleProtoStudy\GoogleProtoStudy文件夹下新建一个person.proto的文件,内容如下:

package tutorial;

message Person {
   optional string dim=1;
   repeated int32 num=2;
}

message Student{
   optional Person p=1;
}

7、在工程的属性->配置属性->链接器->输入,在右侧的“附加依赖项”中输入libprotobuf.lib,libprotoc.lib(注意分两行,每行一个)。然后在属性->配置属性->链接器->常规,在右侧的“附加库目录”中加入刚才vc目录下lib下那个google文件夹的路径,比如我的是"D:\vs2010\VC\lib\google"。

8、然后新建一个main.cpp,在其中写上如下代码:(注意把所有的目录改成你相关的目录)。然后运行,就会把刚才的person.proto编译成一个.h文件和一个.cpp文件。

#include <iostream> 
#include <string>

using namespace std; 


void trans()
{
    std::string S="D:\\vs2010\\VC\\lib\\google\\protoc.exe \
                   -I=C:\\Users\\mcl\\Desktop\\GoogleProtoStudy\\GoogleProtoStudy \
               --cpp_out=C:\\Users\\mcl\\Desktop\\GoogleProtoStudy\\GoogleProtoStudy \
                   C:\\Users\\mcl\\Desktop\\GoogleProtoStudy\\GoogleProtoStudy\\person.proto";
    system(S.c_str());
}

int main() 
{ 
    trans(); system("pause");  return 0;
}

9、把刚才生成的文件加入到工程中,就可以使用了。

#include <iostream> 
#include <string>
#include "person.pb.h" 

using namespace std; 
using namespace tutorial; 


void trans()
{
    std::string S="D:\\vs2010\\VC\\lib\\google\\protoc.exe \
                  -I=C:\\Users\\mcl\\Desktop\\GoogleProtoStudy\\GoogleProtoStudy \
                  --cpp_out=C:\\Users\\mcl\\Desktop\\GoogleProtoStudy\\GoogleProtoStudy \
                  C:\\Users\\mcl\\Desktop\\GoogleProtoStudy\\GoogleProtoStudy\\person.proto";
    system(S.c_str());
}

int main() 
{ 
    //trans();

    Person a;
    a.add_num(1);
    a.add_num(4);
    a.add_num(5);
    a.set_dim("hello world");

    for(int i=0;i<a.num_size();i++) cout<<a.num(i)<<endl; //输出1 4 5
    cout<<a.dim()<<endl; //输出 hello world

    Student b;
    b.set_allocated_p(&a);

    Person* A=b.mutable_p();
    cout<<A->dim()<<endl; //输出 hello world

    system("pause"); 
    return 0;
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文