积分充值
 首页
前端开发
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文库
  • 综合
  • 文档
  • 文章

无数据

分类

全部后端开发(13)C++(13)

语言

全部英语(13)

格式

全部PDF文档 PDF(11)PPT文档 PPT(2)
 
本次搜索耗时 0.013 秒,为您找到相关结果约 13 个.
  • 全部
  • 后端开发
  • C++
  • 全部
  • 英语
  • 全部
  • PDF文档 PDF
  • PPT文档 PPT
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 DEDUCING this PATTERNS

    func! } };CONSIDER "TEMPLATE METHOD" Recall the template method pattern (Design Patterns, Gamma/Helm/Johnson/Vlissides pp 325-330) struct Base { auto TemplateMethod() { PrimitiveOperation1(); ... }; };TEMPLATE METHOD WITH P0847 Recall the template method pattern (Design Patterns, Gamma/Helm/Johnson/Vlissides pp 325-330) Notice: this is morally equivalent to CRTP. template
    0 码力 | 126 页 | 5.15 MB | 6 月前
    3
  • pdf文档 A Physical Units Library for the Next C++

    66templateCharT, std::size_t N> struct basic_fixed_string { CharT data_[N + 1] = {}; // has to be public to be a structural type using iterator = CharT*; using const_iterator = const CharT*; constexpr basic_fixed_string(CharT ch) noexcept; constexpr basic_fixed_string(const CharT (&txt)[N + 1]) noexcept; [[nodiscard]] constexpr std::size_t size() const noexcept; [[nodiscard]] constexpr const CharT* c_str() c_str() const noexcept; [[nodiscard]] constexpr const CharT& operator[](std::size_t index) const noexcept; [[nodiscard]] constexpr CharT operator[](std::size_t index) noexcept; [[nodiscard]] constexpr
    0 码力 | 172 页 | 6.17 MB | 6 月前
    3
  • pdf文档 Unraveling string_view: Basics, Benefits, and Best Practices

    , String splitting. 8 Performance benefits9 namespace std { template CharT, class Traits = std::char_traits<CharT>> class basic_string_view; } It is present in header There are basic_string_view& other) noexcept = default; constexpr basic_string_view(const CharT* s, size_type count); constexpr basic_string_view(const CharT* s); No move constructor, so what happens when someone uses std::move string_view sv(s); string has a conversion operator to string_view. operator std::basic_string_view<CharT, Traits>() const noexcept; 10 C++17 ConstructorsC++20 Constructors 11 template
    0 码力 | 61 页 | 1.11 MB | 6 月前
    3
  • pdf文档 Back To Basics: The Rule of Five

    declared, or are deleted. 22Howard Hinnant’s Special Members chart 23Howard Hinnant’s Special Members chart 24Howard Hinnant’s Special Members chart 25Copyright © 2023 Andre Kostur ● Copy } std::unique_ptr data_; }; 30Howard Hinnant’s Special Members chart 31Howard Hinnant’s Special Members chart 32Copyright © 2023 Andre Kostur Simple String - Second RAII cp) : data_(cp) { } std::string data_; }; 38Howard Hinnant’s Special Members chart 39Howard Hinnant’s Special Members chart 40Copyright © 2023 Andre Kostur Code isn’t just for the
    0 码力 | 42 页 | 623.10 KB | 6 月前
    3
  • pdf文档 Exceptional C++

    st); templatecharT, class traits> basic_ostream<charT, traits>& operator<<(basic_ostream<charT, traits>& os, const stacktrace_entry& f); templatecharT, class traits, class Alloc> Alloc> basic_ostream<charT, traits>& operator<<(basic_ostream<charT, traits>& os, const basic_stacktrace& st); description() source_file() source_line()2021 Victor Ciura
    0 码力 | 113 页 | 24.39 MB | 6 月前
    3
  • pdf文档 C++20 STL Features: 1 Year of Development on GitHub

    Projects: Code reviews, C++20 features, etc. • Wiki: Changelog, checklists, other resources • Status Chart: Generated via GitHub's GraphQL API 28Code: github.com/microsoft/STL • Product: stl/inc, stl/src 34Status Chart: Monthly Merged PRs 35Year 1 ends. Year 2 begins! 36More Info • Links • Repository: github.com/microsoft/STL • Changelog: github.com/microsoft/STL/wiki/Changelog • Status Chart: microsoft contributors • Custom Autolinks • DevCom-724444, LLVM-41915, LWG-3080, WG21-P1209 43Status Chart 44Status Chart: Pull Request Age 45
    0 码力 | 45 页 | 989.72 KB | 6 月前
    3
  • ppt文档 C++20 STL Features: 1 Year of Development on GitHub

    Projects: Code reviews, C++20 features, etc. • Wiki: Changelog, checklists, other resources • Status Chart: Generated via GitHub's GraphQL API29 Code: github.com/microsoft/STL • Product: stl/inc, stl/src Status Chart: Monthly Merged PRs36 Year 1 ends. Year 2 begins!37 More Info • Links • Repository: github.com/microsoft/STL • Changelog: github.com/microsoft/STL/wiki/Changelog • Status Chart: microsoft contributors • Custom Autolinks • DevCom-724444, LLVM-41915, LWG-3080, WG21-P120944 Status Chart45 Status Chart: Pull Request Age
    0 码力 | 45 页 | 702.09 KB | 6 月前
    3
  • pdf文档 LITERALS SAFELY for Types that Behave as though Built-in - Pablo Halpern - CppCon 2021

    10/26/21 Pablo Halpern, 2021 (CC BY 4.0) 38 template CharT, std::size_t N> struct StrLiteralProxy { constexpr StrLiteralProxy(const CharT (&s)[N]) { std::copy(std::begin(s), std::end(s), std::begin(m_data)); std::begin(m_data)); } constexpr std::size_t size() const { return N - 1; } constexpr const CharT* data() const { return m_data; } CharT m_data[N]; }; StrLiteralProxy x = "hello"; // Deduced as StrLiteralProxy
    0 码力 | 66 页 | 1.47 MB | 6 月前
    3
  • pdf文档 Exploration of Strongly-typed Units: A Case Study from Digital Audio

    oating_point; template CharT, typename Traits, typename T, typename Validator> std::basic_ostream<CharT, Traits>& operator<<(std::basic_ostream<CharT, Traits>& os, const validated_type
    0 码力 | 106 页 | 5.66 MB | 6 月前
    3
  • ppt文档 Making Libraries Consumable for Non-C++ Developers

    wchar_t: • Windows, sizeof(wchar_t) == 2 • Non-Windows, sizeof(wchar_t) == 4 std::basic_string<CharT> has memory implications. More on that later.What assumptions are being made? void get_size(size_t
    0 码力 | 29 页 | 1.21 MB | 6 月前
    3
共 13 条
  • 1
  • 2
前往
页
相关搜索词
DEDUCINGthisPATTERNSPhysicalUnitsLibraryfortheNextC++UnravelingstringviewBasicsBenefitsandBestPracticesBackToTheRuleofFiveExceptional20STLFeaturesYearDevelopmentonGitHubLITERALSSAFELYTypesthatBehaveasthoughBuiltinPabloHalpernCppCon2021ExplorationStronglytypedCaseStudyfromDigitalAudioMakingLibrariesConsumableNonDevelopers
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩