积分充值
 首页
前端开发
AngularDartElectronFlutterHTML/CSSJavaScriptReactSvelteTypeScriptVue.js构建工具
后端开发
.NetC#C++C语言DenoffmpegGoIdrisJavaJuliaKotlinLeanMakefilenimNode.jsPascalPHPPythonRISC-VRubyRustSwiftUML其它语言区块链开发测试微服务敏捷开发架构设计汇编语言
数据库
Apache DorisApache HBaseCassandraClickHouseFirebirdGreenplumMongoDBMySQLPieCloudDBPostgreSQLRedisSQLSQLiteTiDBVitess数据库中间件数据库工具数据库设计
系统运维
AndroidDevOpshttpdJenkinsLinuxPrometheusTraefikZabbix存储网络与安全
云计算&大数据
Apache APISIXApache FlinkApache KarafApache KyuubiApache OzonedaprDockerHadoopHarborIstioKubernetesOpenShiftPandasrancherRocketMQServerlessService MeshVirtualBoxVMWare云原生CNCF机器学习边缘计算
综合其他
BlenderGIMPKiCadKritaWeblate产品与服务人工智能亿图数据可视化版本控制笔试面试
文库资料
前端
AngularAnt DesignBabelBootstrapChart.jsCSS3EchartsElectronHighchartsHTML/CSSHTML5JavaScriptJerryScriptJestReactSassTypeScriptVue前端工具小程序
后端
.NETApacheC/C++C#CMakeCrystalDartDenoDjangoDubboErlangFastifyFlaskGinGoGoFrameGuzzleIrisJavaJuliaLispLLVMLuaMatplotlibMicronautnimNode.jsPerlPHPPythonQtRPCRubyRustR语言ScalaShellVlangwasmYewZephirZig算法
移动端
AndroidAPP工具FlutterFramework7HarmonyHippyIoniciOSkotlinNativeObject-CPWAReactSwiftuni-appWeex
数据库
ApacheArangoDBCassandraClickHouseCouchDBCrateDBDB2DocumentDBDorisDragonflyDBEdgeDBetcdFirebirdGaussDBGraphGreenPlumHStreamDBHugeGraphimmudbIndexedDBInfluxDBIoTDBKey-ValueKitDBLevelDBM3DBMatrixOneMilvusMongoDBMySQLNavicatNebulaNewSQLNoSQLOceanBaseOpenTSDBOracleOrientDBPostgreSQLPrestoDBQuestDBRedisRocksDBSequoiaDBServerSkytableSQLSQLiteTiDBTiKVTimescaleDBYugabyteDB关系型数据库数据库数据库ORM数据库中间件数据库工具时序数据库
云计算&大数据
ActiveMQAerakiAgentAlluxioAntreaApacheApache APISIXAPISIXBFEBitBookKeeperChaosChoerodonCiliumCloudStackConsulDaprDataEaseDC/OSDockerDrillDruidElasticJobElasticSearchEnvoyErdaFlinkFluentGrafanaHadoopHarborHelmHudiInLongKafkaKnativeKongKubeCubeKubeEdgeKubeflowKubeOperatorKubernetesKubeSphereKubeVelaKumaKylinLibcloudLinkerdLonghornMeiliSearchMeshNacosNATSOKDOpenOpenEBSOpenKruiseOpenPitrixOpenSearchOpenStackOpenTracingOzonePaddlePaddlePolicyPulsarPyTorchRainbondRancherRediSearchScikit-learnServerlessShardingSphereShenYuSparkStormSupersetXuperChainZadig云原生CNCF人工智能区块链数据挖掘机器学习深度学习算法工程边缘计算
UI&美工&设计
BlenderKritaSketchUI设计
网络&系统&运维
AnsibleApacheAWKCeleryCephCI/CDCurveDevOpsGoCDHAProxyIstioJenkinsJumpServerLinuxMacNginxOpenRestyPrometheusServertraefikTrafficUnixWindowsZabbixZipkin安全防护系统内核网络运维监控
综合其它
文章资讯
 上传文档  发布文章  登录账户
IT文库
  • 综合
  • 文档
  • 文章

无数据

分类

全部后端开发(85)C++(85)Conan(74)

语言

全部英语(83)中文(简体)(2)

格式

全部PDF文档 PDF(84)TXT文档 TXT(1)
 
本次搜索耗时 0.152 秒,为您找到相关结果约 85 个.
  • 全部
  • 后端开发
  • C++
  • Conan
  • 全部
  • 英语
  • 中文(简体)
  • 全部
  • PDF文档 PDF
  • TXT文档 TXT
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 现代C++ 教程:高速上手C++11/14/17/20

    及其相关 对字符串内容进行匹配的最常见手段就是使用正则表达式。可惜在传统 C++ 中正则表达式一直没 有得到语言层面的支持,没有纳入标准库,而 C++ 作为一门高性能语言,在后台服务的开发中,对 URL 资源链接进行判断时,使用正则表达式也是工业界最为成熟的普遍做法。 一般的解决方案就是使用 boost 的正则表达式库。而 C++11 正式将正则表达式的的处理方法纳入 标准库的行列,从语言级上提供了标准的支持,不再依赖第三方。 总结 本节简单介绍了正则表达式本身,然后根据使用正则表达式的主要需求,通过一个实际的例子介绍 了正则表达式库的使用。 习题 1. 在 Web 服务器开发中,我们通常希望服务某些满足某个条件的路由。正则表达式便是完成这一目 标的工具之一。 给定如下请求结构: 60 习题 第 6 章正则表达式 struct Request { // request method, POST, GET; parse_request(std::istream& stream) const { // TODO } } 请实现成员函数 start() 与 parse_request。使得服务器模板使用者可以如下指定路由: template void start_server(SERVER_TYPE &server) { // process GET request
    0 码力 | 83 页 | 2.42 MB | 1 年前
    3
  • pdf文档 《深入浅出MFC》2/e

    勉强有点概念,但是到了第三章,感觉好象世界末日了。MFC 六大技术的仿真...好象很 难懂,读起来非常吃力 是不是有其它书讲得比较简单的?我不是计算机科系学生,只是 对计算机程序设计有兴趣,一路由basic -> FORTRAN -> C -> C++ 走来... szu.bbs@bbs.es.ncku.edu.tw:是的,第三章也许是世界末日,当初我看的时候也是跳过不 看,不然就是看完frame1
    0 码力 | 1009 页 | 11.08 MB | 1 年前
    3
  • pdf文档 From Eager Futures/Promises to Lazy Continuations: Evolving an Actor Library Based on Lessons Learned from Large-Scale Deployments

    namespace http { template void Post(std::string url, std::string body, K k) { void* data = new K(std::move(k)); ... http_post(url, body, data, +[](long code, const char* body, void* data) namespace http { template void Post(std::string url, std::string body, K k) { void* data = new K(std::move(k)); ... http_post(url, body, data, +[]( long code, const char* body, void* data) namespace http { template void Post(std::string url, std::string body, K k) { void* data = new K(std::move(k)); ... http_post(url, body, data, +[](long code, const char* body, void* data)
    0 码力 | 264 页 | 588.96 KB | 6 月前
    3
  • pdf文档 Conan 1.9 Documentation

    of the 1.9.0 version: $ conan inspect Poco/1.9.0@pocoproject/stable ... name: Poco version: 1.9.0 url: http://github.com/pocoproject/conan-poco license: The Boost Software License 1.0 author: None description: 606fdb601e335c2001bdf31d478826b644747077 BuildID: None Remote: conan-center=https://conan.bintray.com URL: http://github.com/conan-community/conan-openssl License: The current OpenSSL licence is an 'Apache 09378ed7f51185386e9f04b212b79fe2d12d005c BuildID: None Remote: conan-center=https://conan.bintray.com URL: http://github.com/pocoproject/conan-poco License: The Boost Software License 1.0 Recipe: Cache Binary:
    0 码力 | 470 页 | 3.05 MB | 1 年前
    3
  • pdf文档 Conan 1.11 Documentation

    of the 1.9.0 version: $ conan inspect Poco/1.9.0@pocoproject/stable ... name: Poco version: 1.9.0 url: http://github.com/pocoproject/conan-poco license: The Boost Software License 1.0 author: None description: 606fdb601e335c2001bdf31d478826b644747077 BuildID: None Remote: conan-center=https://conan.bintray.com URL: http://github.com/conan-community/conan-openssl License: The current OpenSSL licence is an 'Apache 09378ed7f51185386e9f04b212b79fe2d12d005c BuildID: None Remote: conan-center=https://conan.bintray.com URL: http://github.com/pocoproject/conan-poco License: The Boost Software License 1.0 Recipe: Cache Binary:
    0 码力 | 490 页 | 4.05 MB | 1 年前
    3
  • pdf文档 Conan 1.20 Documentation

    of the 1.9.0 version: $ conan inspect Poco/1.9.0@pocoproject/stable ... name: Poco version: 1.9.0 url: http://github.com/pocoproject/conan-poco license: The Boost Software License 1.0 author: None description: 606fdb601e335c2001bdf31d478826b644747077 BuildID: None Remote: conan-center=https://conan.bintray.com URL: http://github.com/conan-community/conan-openssl License: The current OpenSSL licence is an 'Apache 09378ed7f51185386e9f04b212b79fe2d12d005c BuildID: None Remote: conan-center=https://conan.bintray.com URL: http://github.com/pocoproject/conan-poco License: The Boost Software License 1.0 Recipe: Cache Binary:
    0 码力 | 611 页 | 4.89 MB | 1 年前
    3
  • pdf文档 Conan 1.19 Documentation

    of the 1.9.0 version: $ conan inspect Poco/1.9.0@pocoproject/stable ... name: Poco version: 1.9.0 url: http://github.com/pocoproject/conan-poco license: The Boost Software License 1.0 author: None description: 606fdb601e335c2001bdf31d478826b644747077 BuildID: None Remote: conan-center=https://conan.bintray.com URL: http://github.com/conan-community/conan-openssl License: The current OpenSSL licence is an 'Apache 09378ed7f51185386e9f04b212b79fe2d12d005c BuildID: None Remote: conan-center=https://conan.bintray.com URL: http://github.com/pocoproject/conan-poco License: The Boost Software License 1.0 Recipe: Cache Binary:
    0 码力 | 609 页 | 4.88 MB | 1 年前
    3
  • pdf文档 Conan 1.15 Documentation

    of the 1.9.0 version: $ conan inspect Poco/1.9.0@pocoproject/stable ... name: Poco version: 1.9.0 url: http://github.com/pocoproject/conan-poco license: The Boost Software License 1.0 author: None description: 606fdb601e335c2001bdf31d478826b644747077 BuildID: None Remote: conan-center=https://conan.bintray.com URL: http://github.com/conan-community/conan-openssl License: The current OpenSSL licence is an 'Apache 09378ed7f51185386e9f04b212b79fe2d12d005c BuildID: None Remote: conan-center=https://conan.bintray.com URL: http://github.com/pocoproject/conan-poco License: The Boost Software License 1.0 Recipe: Cache Binary:
    0 码力 | 540 页 | 4.22 MB | 1 年前
    3
  • pdf文档 Conan 1.16 Documentation

    of the 1.9.0 version: $ conan inspect Poco/1.9.0@pocoproject/stable ... name: Poco version: 1.9.0 url: http://github.com/pocoproject/conan-poco license: The Boost Software License 1.0 author: None description: 606fdb601e335c2001bdf31d478826b644747077 BuildID: None Remote: conan-center=https://conan.bintray.com URL: http://github.com/conan-community/conan-openssl License: The current OpenSSL licence is an 'Apache 09378ed7f51185386e9f04b212b79fe2d12d005c BuildID: None Remote: conan-center=https://conan.bintray.com URL: http://github.com/pocoproject/conan-poco License: The Boost Software License 1.0 Recipe: Cache Binary:
    0 码力 | 545 页 | 4.34 MB | 1 年前
    3
  • pdf文档 Conan 1.14 Documentation

    of the 1.9.0 version: $ conan inspect Poco/1.9.0@pocoproject/stable ... name: Poco version: 1.9.0 url: http://github.com/pocoproject/conan-poco license: The Boost Software License 1.0 author: None description: 606fdb601e335c2001bdf31d478826b644747077 BuildID: None Remote: conan-center=https://conan.bintray.com URL: http://github.com/conan-community/conan-openssl License: The current OpenSSL licence is an 'Apache 09378ed7f51185386e9f04b212b79fe2d12d005c BuildID: None Remote: conan-center=https://conan.bintray.com URL: http://github.com/pocoproject/conan-poco License: The Boost Software License 1.0 Recipe: Cache Binary:
    0 码力 | 528 页 | 4.17 MB | 1 年前
    3
共 85 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 9
前往
页
相关搜索词
现代C++教程高速上手11141720深入深入浅出MFCFromEagerFuturesPromisestoLazyContinuationsEvolvinganActorLibraryBasedonLessonsLearnedfromLargeScaleDeploymentsConan1.9Documentation1.111.201.191.151.161.14
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩