ICode9

精准搜索请尝试: 精确搜索
  • C++ boost协程技术介绍2021-11-06 19:05:53

      协程在C++20中已经加入了,但并不完善,C++标准库的协程将在C++23中正式推出。其它语言,例如go、python也是默认支持协程,C++相对来说落后了。   Boost在1.53版本就推出了协程库,本篇博客基于Boost1.76版本,来介绍协程库。1.53版本的BoostCoroutine 现在已被弃用,请使用Boost.Co

  • C++ boost非对称协程代码演示2021-11-06 19:02:01

    boost的两种非对称协程: asymmetric_coroutine<>::push_type asymmetric_coroutine<>::pull_type* pull_type asymmetric_coroutine<>::pull_type从另一个执行上下文传输数据。模板参数定义了传输的参数类型。asymmetric_coroutine<>::pull_type的构造函数接受一个 函数 ( c

  • 如何编译vSomeIP2021-11-04 09:58:00

    如何编译vSomeIP 1.下载源码 下载boost wget https://boostorg.jfrog.io/native/main/release/1.74.0/source/boost_1_74_0.tar.gz     或者: wget https://github.com/boostorg/boost/archive/refs/tags/boost-1.74.0.tar.gz 下载vSomeIP wget https://github.com/COVESA/vso

  • CentOS7源码安装MySQL2021-11-01 09:32:45

    CentOS7源码安装MySQL 1:安装依赖包   执行:yum -y install ncurses-devel gcc-* bzip2-* bison      2:升级cmake工具(我用的是cmake-3.22.0-rc1.tar.gz)下载地址   源码安装基本步骤     1:解压:tar -xzvf  cmake-3.22.0-rc1.tar.gz     2:配置:./config     3:编译:m

  • boost I 字符串与文本处理2021-10-30 13:03:40

    一、lexical_cast         lexical_cast库可以进行字符串与整数\浮点数之间的互相转换。         lexical_cast的标准形式有两个模板参数 template <typename Target, typename Source>,Target需要我们手动指定,是转换后的目标类型,通常是数字类型或 std:: string

  • 2021-10-142021-10-26 16:00:00

    C++ 学习之boost库学习 1.boost库简介 Boost C++ 库 是一组基于C++标准的现代库。 其源码按 Boost Software License 来发布,允许任何人自由地使用、修改和分发。 这些库是平台独立的,且支持大多数知名和不那么知名的编译器。 Boost 社区负责开发和发布 Boost C++ 库。 社区由

  • boost::asio教程(一) :tcp server与tcp client2021-10-24 15:05:53

      boost::asio是boost库的一个名字空间,包含了tcp,udp编程的一些类与方法,比如   如果你是第一次看这个,可能不太懂,不要紧,就把它当做是一些类就可以,什么socket,tcp,udp不用管。   在写网络编程,相信大部分人都了结七层网络协议,tcp三次握手四次挥手之类的,但是其中深层次的原理

  • Ubuntu下管理libboost - For PCL2021-10-07 16:01:57

    查看版本 此方式是查看通过sudo apt-get 安装的boost版本 dpkg -S /usr/include/boost/version.hpp 此方式是查看通过手动方式安装的boost版本 cat /usr/local/include/boost/version.hpp | grep "BOOST_LIB_VERSION" 注意:很有可能存在两个boost版本,使用的时候需要注意! 安

  • boost/function,boost/bind2021-10-06 15:33:17

    #include<iostream> #include<boost/function.hpp> #include<boost/bind.hpp> using namespace std; class Foo { public: void memberFunc(double d, int i, int j) { cout << d << endl; cout << i << e

  • Boost boost_1_63_0安装 gcc4.8 & gcc5.42021-10-06 11:04:31

    。 下载boost安装包并解压缩 到http://www.boost.org/下载boost的安装包 tar zxvf boost_1_63_0.tar.gz cd boost_1_63_0 设置参数 ./bootstrap.sh --with-libraries=all --with-toolset=gcc Notice:all是安装所有的库。如果不是想要安装所有的库,可以在后面指定想编译部分库,库之

  • boost::split的使用2021-09-24 18:59:17

    boost::split的使用

  • Linux下安装boost环境2021-09-24 11:04:37

    在终端依次运行如下命令: wget http://sourceforge.net/projects/boost/files/boost/1.54.0/boost_1_54_0.tar.gz tar -xzvf boost_1_54_0.tar.gz cd boost_1_54_0 ./bootstrap.sh --prefix=/usr/local ./b2 install --with=all 即可 boost就被安装到/usr/local/lib下

  • ros publish and subscribe2021-09-21 16:35:50

    回调关系建立 创建handle时,会listen一个tcp端口 bool TransportTCP::listen(int port, int backlog, const AcceptCallback& accept_cb) bool TransportTCP::initializeSocket() 设置poll的回调 poll_set_->addSocket(sock_, boost::bind(&TransportTCP::socketUpdate, this, _1),

  • 如何在QT项目中引入Boost库2021-09-19 10:03:09

    假设"D:\boost_1_77_0"是boost库所在路径。 1,在QT项目的.pro文件中修改如下两项: 在INCLUDEPATH项中加入D:\boost_1_77_0 在LIBS项中加入-LD:\boost_1_77_0 注意:LIBS项中的boost路径前面需要加上-L,并且和boost路径之间没有空格。 2,在QT项目中引入所需的boost头文件: 此处以boost::op

  • TcpConnection的上下文2021-09-17 16:04:49

    #20210917 TcpConnection的上下文 如有问题,欢迎交流! 上下文 相关API: void TcpConnection::setContext(const boost::any& context) {context_ = context;} boost::any* TcpConnection::getContext() const {return context_} 解释: 用于记录本次和本次连接密切相关的信

  • macos安装MPI-IS / mesh遇到的坑2021-09-16 20:02:18

    一步一步按照Readme教程来,在 brew install boost安装之后 跳到mesh文件夹下,使用命令 BOOST_INCLUDE_DIRS=/usr/local/Cellar/boost/1.76.0/include make all 在此过程中,我遇到过报错openGL版本问题,重装其指定的版本之后,又报错 OSError: (‘dlopen(OpenGL, 10): image not fo

  • conda环境安装dlib包(安装库文件方式)2021-09-16 19:04:18

    之前的一篇文章是使用whl文件进行dlib库的安装,安装步骤简单,(对dlib运用熟练,并且想要快速使用的上一篇文章的方式就足够了)但是存在的问题是导入这个包之后无法访问这个包内的某一个方法,例如 点开这个包之后: 包内各个方法可以使用,但是不知道具体的内容,很是苦恼,所以又创建了一

  • 编译 thrift-0.14.2 的 C++ 版本2021-09-05 10:00:21

    编译命令: ./configure --prefix=/usr/local/thrift-0.14.2 --with-cpp=yes --with-php=no --with-python=no --with-qt5=no --with-c_glib=no --with-java=no --with-erlang=no --with-nodejs=no --with-nodets=no --with-lua=no --with-py3=no --with-perl=no --with-php_extens

  • 使用Visual C++高版本的XP支持生成带boost执行文件在XP上报kernel32缺函数2021-08-26 03:31:06

    典型症状 使用Visual Studio 2019,安装“对VS 2017 (v141)工具的C++ Windows XP支持”后,用该v141_xp平台工具集生成的执行文件在Windows XP SP3下仍无法运行,Release版本报错,Debug版本提示“在KERNEL32.DLL中找不到xxxxxx”,典型的找不到的有InitializeSRWLock或InitializeCriticalSe

  • boost signal 自动释放关联对象2021-08-18 10:31:25

    #include <boost/signal.hpp> #include <boost/bind.hpp> #include <iostream> #include <memory> class world : public boost::signals::trackable { public: void hello() const { std::cout << "Hello,

  • boost 库安装及测试(ubuntu)2021-08-17 15:05:03

    linux下boost库的安装及库的介绍 (一)boost"准标准库"安装过程 系统是ubuntu虚拟机,安装的是boost_1_60_0。 (1)首先去下载最新的boost代码包,网址www.boost.org。 (2)进入到自己的目录,解压: bzip2 -d boost_1_60_0.tar.bz2tar xvf boost_1_60_0.tar (3)之后进入boost目录cd boost_1_60_0/./

  • 源码安装mysql2021-08-15 06:34:21

    源码编译安装mysql 1 将安装mysql 所需软件包传到/opt目录下 mysql-5.7.17.tar.gz boost_1_59_0.tar.gz #支持c++ 的运行库   2 安装环境依赖包 yum -y install gcc gcc-c++ ncurses ncurses-devel bison cmake ​ #ncurses #字符终端下图形互动功能的动态库 #ncurse

  • codeblock 编译 SmartWin++项目 vc2010编译器 void __cdecl boost::throw_exception解决记录2021-08-15 02:00:33

    1,正常编译SmartWin.sln 文件,生成" .ib " 2,codeblock 新建 SmartWin 项目  ,  分别设置 include   lib  路径. 3, 此时编译报错" main.obj||error LNK2019: 无法解析的外部符号 "void __cdecl boost::throw_exception(class std::exception const &)" (?throw_exception@b

  • 简陋RPC理解实现2021-08-13 14:35:28

    详情见注解 #include <iostream> #include <list> #include <map> #include <cstring> #include <iostream> #include <memory> #include <functional> #include <boost/asio.hpp> #include <boost/bind/bind.hpp> /* *

  • 状态机2021-07-31 16:01:28

    1. 安装boost库 yum install boost yum install boost-devel yum install boost-doc   2. 例子1 1 #include <boost/statechart/transition.hpp> 2 #include <boost/statechart/event.hpp> 3 #include <boost/statechart/state_machine.hpp> 4 #include &

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有