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

无数据

分类

全部后端开发(52)Julia(30)C++(21)综合其他(9)Krita(9)Go(1)

语言

全部英语(50)中文(简体)(7)中文(繁体)(2)日语(1)韩语(1)

格式

全部PDF文档 PDF(53)其他文档 其他(7)PPT文档 PPT(1)
 
本次搜索耗时 0.014 秒,为您找到相关结果约 61 个.
  • 全部
  • 后端开发
  • Julia
  • C++
  • 综合其他
  • Krita
  • Go
  • 全部
  • 英语
  • 中文(简体)
  • 中文(繁体)
  • 日语
  • 韩语
  • 全部
  • PDF文档 PDF
  • 其他文档 其他
  • PPT文档 PPT
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 Back To Basics: Rvalues and Move Semantics

    thus compilation error B T&& in push is NOT a forwarding reference, thus we support only push of rvalues C push may add to the vector a dangling ref D push may inefficiently copy when it can move an thus compilation error B T&& in push is NOT a forwarding reference, thus we support only push of rvalues C push may add to the vector a dangling ref D push may inefficiently copy when it can move an org/z/b36coxdn4Summary 73 Back to Basics: RValue and Move Semantics, Amir Kirsh @ CppCon, 2024Summary (1) Rvalues and move semantics are here to improve our code performance Stick to Rule of Zero when you can
    0 码力 | 80 页 | 740.53 KB | 5 月前
    3
  • pdf文档 对 Go 程序进行可靠的性能测试

    Values []float64 // 某个性能测试的度量值 RValues []float64 // 移除的异常值 Min float64 // RValues 的最小值 Mean float64 // RValues 的平均值 Max float64 // RValues 的最大值 } func (m *Metrics) computeStats() if lo <= value && value <= hi { m.RValues = append(m.RValues, value) } } // 求统计量 m.Min, m.Max = stats.Bounds(m.RValues) m.Mean = stats.Mean(m.RValues) } ... // 在 benchstat.Collection.Tables()
    0 码力 | 37 页 | 1.23 MB | 1 年前
    3
  • pdf文档 Back to Basics: Move Semantics

    Semantics (C++11) *。 With rvalue references you can provide move semantics "”Rvalue references bind to rvalues =- Caller no longer needs the value = May steal but keep valid include 1declares to adopt value -pass value thatis no longer needed - only objects without name or with move () (rvalues) 。void foo(const Type&E) atdi :vectorrvalues) 。void foo(const Type&E) dl :vector
    0 码力 | 23 页 | 1020.10 KB | 5 月前
    3
  • pdf文档 Back to Basics: Templates Part 2

    Back to Basics: Templates – Part 2 Copyright © 2021 Bob Steagall Value Categories: lvalues and rvalues • Every C++ expression has an associated type • Every C++ expression belongs to a value category Back to Basics: Templates – Part 2 Copyright © 2021 Bob Steagall Value Categories: lvalues and rvalues • Every C++ expression has an associated type • Every C++ expression belongs to a value category Back to Basics: Templates – Part 2 Copyright © 2021 Bob Steagall Value Categories: lvalues and rvalues • Every C++ expression has an associated type • Every C++ expression belongs to a value category
    0 码力 | 80 页 | 490.15 KB | 5 月前
    3
  • pdf文档 Back to Basics: The Abstract Machine

    C++ expression has an associated type • Every C++ expression is a member of a value category • rvalues indicate objects that are • Nameless • Temporary objects, literals, etc. • Cannot have their address C++ expression has an associated type • Every C++ expression is a member of a value category • rvalues indicate objects that are • Nameless • Temporary objects, literals, etc. • Cannot have their address C++ expression has an associated type • Every C++ expression is a member of a value category • rvalues indicate objects that are • Nameless • Temporary objects, literals, etc. • Cannot have their address
    0 码力 | 91 页 | 538.90 KB | 5 月前
    3
  • pdf文档 Hidden Overhead of a Function API

    wordpress.com/2018/05/16/rvalues-redefined/ 81There is a solution! https://quuxplusone.github.io/blog/2018/05/17/super-elider-round-2/ https://akrzemi1.wordpress.com/2018/05/16/rvalues-redefined/ 82There https://quuxplusone.github.io/blog/2018/05/17/super-elider-round-2/ https://akrzemi1.wordpress.com/2018/05/16/rvalues-redefined/ 83https://alcash07.github.io/ACTL/actl/functional/lazy.html template the caller know that a function will not modify the argument, and both allow initialization by rvalues. What is “cheap to copy” depends on the machine architecture, but two or three words (doubles,
    0 码力 | 158 页 | 2.46 MB | 5 月前
    3
  • pdf文档 Back to Basics: Move Semantics

    Move Semantics — CppCon 2020 #include Move Semantics Rvalue references, T&&, only bind to rvalues std::move turns any expression into an rvalue Move constructor / assignment: One rvalue reference return values (that aren’t lvalue references) • Results of built-in operators (that aren’t lvalues) Rvalues usually have a short lifetime36 David Olsen — Back to Basics: Move Semantics — CppCon 2020 #include int variable; func( variable ); func( 42 ); func( v.size() ); Semantics Okay: arguments are rvalues42 David Olsen — Back to Basics: Move Semantics — CppCon 2020 #include Rvalue References The
    0 码力 | 142 页 | 1.02 MB | 5 月前
    3
  • pdf文档 Quantifying Accidental Complexity: An empirical look at teaching and using C++

    Otherwise, pass by const X& + Overload non-templated rvalue reference X&& + std::move once to optimize rvalues except if X must be a type parameter, write templated forwarding reference X&& + enable_if/requires // for rvalues g(std::move(x)); } // remember to move only once template void f3(const T& t) { g(t); } // hard to overload to pass by value // hard to overload for rvalues void f1(in template void f3(in T t) { g(t); } efficient: copies builtins and moves from rvalues (even if f2 is a template) simple and safe: can’t modify param, implicitly move for last copy
    0 码力 | 36 页 | 2.68 MB | 5 月前
    3
  • pdf文档 Forwarding References

    bit-field CppCon 2023 | Forwarding References Value categories “GENERALIZED” LVALUES "PURE" RVALUES 4Determines the identity of an object, bit-field, or function Computes the value of the operand be reused CppCon 2023 | Forwarding References Value categories “GENERALIZED” LVALUES "PURE" RVALUES "EXPIRING" LVALUES 4glvalue that is not an xvalue CppCon 2023 | Forwarding References Value categories const can't be mutated. They are similar to lvalue references to const except they bind only to rvalues. 23rvalue reference variables are lvalues when used in expressions. CppCon 2023 | Forwarding References
    0 码力 | 107 页 | 3.72 MB | 5 月前
    3
  • pdf文档 Six Ways for Implementing Math Expressions Calculator

    Sum(Exp(Number(3), Number(2)), Number(-1)); cout << e << " = " << e.eval() << endl; // passing rvalues auto num1 = Number(-1); auto e2 = Sum(std::move(e), std::move(num1)); cout << e2 << " Sum(Exp(Number(3), Number(2)), Number(-1)); cout << e << " = " << e.eval() << endl; // passing rvalues auto num1 = Number(-1); auto e2 = Sum(std::move(e), std::move(num1)); cout << e2 << "
    0 码力 | 63 页 | 1.85 MB | 5 月前
    3
共 61 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
前往
页
相关搜索词
BackToBasicsRvaluesandMoveSemanticsGo程序进行可靠性能测试toTemplatesPartTheAbstractMachineHiddenOverheadofFunctionAPIQuantifyingAccidentalComplexityAnempiricallookatteachingusingC++ForwardingReferencesSixWaysforImplementingMathExpressionsCalculator
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩