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

无数据

分类

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

语言

全部英语(303)中文(简体)(15)英语(2)中文(繁体)(1)

格式

全部PDF文档 PDF(303)PPT文档 PPT(17)TXT文档 TXT(1)
 
本次搜索耗时 0.044 秒,为您找到相关结果约 321 个.
  • 全部
  • 后端开发
  • C++
  • Conan
  • 全部
  • 英语
  • 中文(简体)
  • 英语
  • 中文(繁体)
  • 全部
  • PDF文档 PDF
  • PPT文档 PPT
  • TXT文档 TXT
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 Class Layout

    Class Layout Copyright © 2020 by Stephen C. Dewhurst and Daniel Saks 1 Class Layout Steve Dewhurst Semantics Consulting, Inc. www.stevedewhurst.com 1 Copyright © 2020 by Stephen C. Dewhurst and Daniel Daniel Saks C++ Classes  Only non-static data declarations in a class definition add anything to the size of class objects. class HR { public: ~~~ void terminator(Salary *, Hourly *, Temp *); private: Stephen C. Dewhurst and Daniel Saks 1 7Class Layout Copyright © 2020 by Stephen C. Dewhurst and Daniel Saks 2 sizeof(Class Object)  sizeof applied to the HR class yields the same result as sizeof applied
    0 码力 | 51 页 | 461.37 KB | 6 月前
    3
  • pdf文档 Back to Basics: Generic Programming

    declaration; declaration can be • class / struct • function • type alias • variable • concept template-parameter is class | typename identifier [= default-value] Template definition should be in a header file12 David Olsen – Generic Programming CppCon 2024 Class Template Definition template <class T, class U> class pair { T m0; U m1; public: pair() { } pair(T v0, U v1) : m0(v0), m1(v1) https://godbolt.org/z/rejh9YPhK13 David Olsen – Generic Programming CppCon 2024 Class Template Definition template <class T, class U> class pair { T m0; U m1; public: pair() { } pair(T v0, U v1) : m0(v0), m1(v1)
    0 码力 | 175 页 | 1.16 MB | 6 月前
    3
  • pdf文档 Custom Views for the Rest of Us

    (int i : iota(2) | filter(even) | transform(square)) std::cout << i << ' '; 1 2 3 456template <class T> concept GravitationalBody = requires(T const t) { { t.GetMass() } -> std::floating_point; GetLocation() } -> std::same_as; { t.GetVelocity() } -> std::same_as; }; template <class T> concept GravitationalRange = GravitationalBody>; 1 2 3 4 5 6 7 8 construction. ranges::enable_view is true. template <class T> concept range = requires(T& t) { ranges::begin(t); ranges::end(t); }; template <class T> concept view = ranges::range &&
    0 码力 | 187 页 | 13.25 MB | 6 月前
    3
  • pdf文档 Many Ways to Kill an Orc (or a Hero)

    about? // the easy case import std; // or #include , , , class Character { std::string name_; int life_; public: constexpr Character(std::string_view suffer (among other things)What this is about? // the easy case // ... class Character { /* ... */ }; class Orc; class Hero : Character { int strength_; public: constexpr Hero(std::string_view hit an OrcWhat this is about? // the easy case // ... class Character { /* ... */ }; class Orc; class Hero : Character { /* ... */ }; class Orc : Character { int strength_; public: constexpr
    0 码力 | 202 页 | 1.26 MB | 6 月前
    3
  • pdf文档 Back to Basics: Templates Part 2

    it is a recipe for making things • C++ provides six kinds of templates • Function templates • Class templates • Member function templates • Alias template • Variable templates • Lambda templates definitions are permitted" • Exactly one definition of a class must appear in any translation unit that uses it in such a way that the class must be complete • The rules for inline variables and functions parameters to create a template specialization 6 template<class T1, class T2> struct pair { T1 first; T2 second; ... }; template<class T> T const& max(T const& a, T const& b) { ... } pair
    0 码力 | 80 页 | 490.15 KB | 6 月前
    3
  • pdf文档 Some Things C++ Does Right

    heard… • This talk is about some of the things C++ does right 15 Me, promoting my CppCon 2020 class: https://twitter.com/PatriceRoy1/status/1296153449235652609?s=20You might have heard… • This talk elegance • Situation: we have a game with all sorts of monsters • We made a class hierarchy managed within objects of a pImpl class named Monster (Do as the ints do!) • Write to me if you don’t know how elegance // if we were in C# using System; using System.IO; using static System.Console; // recent C# class Program { static void Main() { Write(File.ReadAllText("z.cs")); } } 39A word about beauty and
    0 码力 | 228 页 | 2.47 MB | 6 月前
    3
  • pdf文档 Back to Basics: Templates - Part 1

    functions 16 template<class T> T const& min(T const& a, T const& b); { return (a < b) ? a : b; } template<class T> void swap(T& a, T& b); template<class RandomIt, class Compare> void sort(RandomIt 2021 Bob Steagall Class Templates (C++98/03) • Recipes for making classes 17 template<class T, size_t N> struct array {...}; template<class T, class Alloc = allocator> class vector {...}; templateclass Key, class Val, class Compare = less, class Allocator = allocator>> class map {...};CppCon 2021 – Back to Basics: Templates – Part 1 Copyright © 2021 Bob Steagall
    0 码力 | 68 页 | 436.75 KB | 6 月前
    3
  • pdf文档 《深入浅出MFC》2/e

    314 別㆟怎麼說 / 317 為什麼使用 Application Framework / 321 Microsoft Foundation Class(MFC) / 324 白頭宮女話㆝寶:Visual C++ 與 MFC / 327 縱覽 MFC / 329 General Purpose 会在各个Wizards 上按来按去,却不懂所谓message loop 与window procedure 的人, 不可能搞定Windows 程序设计-- 不管你用的是MFC 或OWL 或Open Class Library,不管你用的是Visual C++ 或Borland C++ 或VisualAge C++。 你需要什么软硬件环境 一套Windows 95(或Windows NT)操作系统当然是必须的,中英文皆可。此外,你需 C++ 5.0 让我们使用同一种语言 要在计算机书籍不可或缺的英文术语与流利顺畅的中文解说之间保持一个平衡,是多么不 容易的一件事。我曾经以为我通过了最大的考验,但每次总有新鲜事儿发生。是该叫class 好呢?还是叫「类别」好?该叫object 好呢?还是叫「对象」好?framework 难道该译 为框架吗?Document 译为「文件」,可也,可View 是什么碗糕?我很伤脑筋耶。考 虑
    0 码力 | 1009 页 | 11.08 MB | 1 年前
    3
  • pdf文档 Back to Basics: Designing Classes (part 1 of 2)

    B2B and SD tracks Email: klaus.iglberger@gmx.deContent 3 Back to Basics: Class Design (Part 1) The Challenge of Class Design Design Guidelines Design for Readability Design for Change and Extension Extension Design for Testability Implementation Guidelines Resource Management Back to Basics: Class Design (Part 2) Implementation Guidelines Data Member Initialization Implicit Conversions Order Qualified/Modified Member Data Visibility vs. AccessibilityThe Challenge of Class Design 4 Back to Basics: Class Design (Part 1) The Challenge of Class Design Design Guidelines Design for Readability Design for
    0 码力 | 87 页 | 5.64 MB | 6 月前
    3
  • pdf文档 Template-Less Meta-Programming

    1 / 58Template Metaprogramming (TMP) Template Metaprogramming (TMP) template<class... Ts> using meta_fun = this_talk; 2 / 58❓static_assert(Template::Metaprogramming::is_hard); // ✔ 3 / 58❓s 58[Examples] Standard Template Library (STL) [Examples] Standard Template Library (STL) template<class... Ts> template<class T> constexpr variant::variant(T&& t) : index{find_index} // Powered by Library (STL) template<class... Ts> template<class T> constexpr variant::variant(T&& t) : index{find_index} // Powered by TMP , // ... { } templateclass... Ts> constexpr auto
    0 码力 | 130 页 | 5.79 MB | 6 月前
    3
共 321 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 33
前往
页
相关搜索词
ClassLayoutBacktoBasicsGenericProgrammingCustomViewsfortheRestofUsManyWaysKillanOrcorHeroTemplatesPartSomeThingsC++DoesRight深入深入浅出MFCDesigningClassespartTemplateLessMeta
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩