由于工作中一些需求,需要完成C++与Python之间的Socket通信,基于自定义协议的通信。 环境: Centos 6.5+gcc (GCC) 4.8.2+kernel 2.6.32+cmake v...
【整理】Linux Socket网络编程_TCP编程(3)_多线程版本
环境: Centos 6.5+gcc (GCC) 4.8.2+kernel 2.6.32+cmake version 2.8.12.2 目标:完成Linux下TCP通信基础版本,可以实现客户端对服务器...
【整理】Linux Socket网络编程_TCP编程(2)_多进程版本
环境: Centos 6.5+gcc (GCC) 4.8.2+kernel 2.6.32+cmake version 2.8.12.2 目标:完成Linux下TCP通信多进程版本,多个客户端可以同时连...
【整理】Linux Socket网络编程_TCP编程(1)_基础版本
环境: Centos 6.5+gcc (GCC) 4.8.2+kernel 2.6.32+cmake version 2.8.12.2 目标:完成Linux下TCP通信基础版本,可以实现客户端对服务器...
【已解决】CMake undefined reference to `pthread_create’
cmake需要链接pthread库时,如果写法不当,会出现如下错误: undefined reference to `pthread_create' 正确的解决办法是: cmake_minimum_r...
【整理】C++ string转int,string转double,string转long,int转string,double转string…
C++开发中,经常遇到各种基本类型与string的转换,掌握本博文,便可以轻松应对C++各基本类型与string的转换(比如: int转string,double转string,long转string...
【谨慎使用】解决CTP在Linux开发中double free
感谢网友:∮f(x)dx,徐冠鹏 提供的解决方法。 这份代码用于演示如何利用 dlopen 来避免 CTP GNU/Linux API 中 trader 和 mduser 两个库同时在一个进程中加载导...
linux C/C++语言修改终端输出颜色
格式: printf("\033[字背景颜色;字体颜色m字符串 \033[0m" ); printf("\033[41;32m字体背景是红色,字是绿色\033[0m\n"); 41是字背景颜色, 32...
[已解决]MongoDB C++ /usr/local/include/boost/smart_ptr/scoped_ptr.hpp:97: T* boost::scoped_ptr::operator->() const [with T = mongo::AtomicWord]: Assertion `px != 0′ failed. Aborted (core dumped)
进行数据操作时报错: quant_ctp_XTrader: /usr/local/include/boost/smart_ptr/scoped_ptr.hpp:97: T* boost::scoped...
[原创]CentOS 6.5编译C++_MongoDB驱动
CentOS 6.5编译MongoDB的C++驱动比较繁琐,鉴于今天编译成功,PO文一篇,记录编译过程: 阅读者要求:对Linux熟悉,小白请绕路。 编译环境各软件版本: GCC 4.8.2 Boos...