C++
自己的见解
qq_41049980
这个作者很懒,什么都没留下…
展开
-
如何调用基类私有的虚函数
如何调用基类私有的虚函数原创 2022-07-11 15:06:54 · 606 阅读 · 1 评论 -
超详细的C++与java使用protobuf进行数据交互
1、安装环境 客户端idea,服务端c++,服务端需要linux环境,可以使用远程服务器获取虚拟机都可以 2、服务端准备 需要安装protobuf环境 安装需要的依赖包: yum -y install autoconf automake libtool curl make g++ unzip unzip protobuf-master.zip cd protobuf-master ./autogen.sh ./configure make make check make install 最后查看版本原创 2021-12-23 18:36:13 · 2745 阅读 · 0 评论 -
使用C++11编写线程池
C++11实现的线程池原创 2021-12-06 18:52:46 · 318 阅读 · 0 评论 -
常见C++错误
当我们写下如下的程序,会发生什么样的问题?? class Node { public: Node() { parent = new Node(); } Node(bool isWord, int count, string str) : isWord(isWord), count(count),原创 2021-07-20 15:46:24 · 95 阅读 · 0 评论