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

无数据

分类

全部后端开发(72)C++(72)Conan(66)

语言

全部英语(71)中文(简体)(1)

格式

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

    chooses the best available option: 1. Exact/identity match 2. Trivial conversion 3. Promotion 4. Promotion + trivial conversion 5. Standard conversion 6. Standard conversion + trivial conversion 1)Promotions (Rank 2) 62 The following standard conversions count as promotions: • Integral promotion • unsigned short ➜ unsigned int or int (depending on your platform) • short ➜ int • char ➜ int point promotion • float ➜ doublePromotions (Rank 2) 63 void f( int ); // (1) void f( double ); // (2) int main() { short v = 42; f( v ); } // Calls (1) (integral promotion, rank
    0 码力 | 111 页 | 5.11 MB | 5 月前
    3
  • pdf文档 Back to Basics - Function Call Resolution

    put(int c, FILE *f);  In each case, the compiler promotes charto intto achieve the match.  That promotion may generate additional code that executes at run time. 15 Best Matches and Ambiguities  In “cheap” array-to-pointer conversion qualification conversion etc. integral promotion Promotion floating-point promotion integral conversion Conversion “expensive” floating-point conversion pointer “cheap” array-to-pointer conversion qualification conversion etc. integral promotion Promotion floating-point promotion integral conversion Conversion “expensive” floating-point conversion pointer
    0 码力 | 44 页 | 1.30 MB | 5 月前
    3
  • pdf文档 Overload Resolution

    Resolution ● Standard Conversion Categories ○ numeric promotions (4) ■ integral promotion ■ floating-point promotion ○ conversions (5) ■ integral conversion ■ floating-point conversion ■ floating–integral ambiguous ( compile error ) } 28Overload Resolution ● Numeric Promotions (category 4) ○ integral promotion ■ short to int ■ unsigned short to unsigned int or int ■ bool to int (0 or 1) ■ char to int or or unsigned int ■ a few more however it must be defined in the standard ○ floating point promotion ■ float to double 29Overload Resolution ● Example 3 ○ integral conversion (category 5) ■ integral
    0 码力 | 55 页 | 209.57 KB | 5 月前
    3
  • pdf文档 Just-In-Time Compilation: The Next Big Thing

    DATA PROMOTION FROM COMPILE-TIME TO RUNTIME? DATA PROMOTION FROM COMPILE-TIME TO RUNTIME? 9 . 3JIT IN THE COMPILER JIT IN THE COMPILER DATA PROMOTION FROM COMPILE-TIME TO RUNTIME? DATA PROMOTION FROM COMPILATION TIME VARIABILITY? 9 . 3JIT IN THE COMPILER JIT IN THE COMPILER DATA PROMOTION FROM COMPILE-TIME TO RUNTIME? DATA PROMOTION FROM COMPILE-TIME TO RUNTIME? COMPILATION TIME VARIABILITY? COMPILATION
    0 码力 | 222 页 | 5.45 MB | 5 月前
    3
  • ppt文档 C++高性能并行编程与优化 - 课件 - 12 从计算机组成原理看 C 语言指针

    ,根据补码的 规则他是一个正数 128 。 实验:自动类型提升( type promotion ) • 一个较小类型的 short 和较大类型的 int 相加会得到什么类型?会得到 int 类型。 • 结论:小类型和大类型做数学运算( +-*/% )会得到两个类型中的大类型。 实验:自动类型提升( type promotion ) • 对 unsigned 类型也是同理的。 • unsigned unsigned short = unsigned int 实验:自动类型提升( type promotion ) • 如果两边有一边是 unsigned 的但是大小不等,则还是选择较大类型。 • unsigned short + int = int 实验:自动类型提升( type promotion ) • 如果两边有一边是 unsigned 的但是大小相等,则结果是 unsigned 的。
    0 码力 | 128 页 | 2.95 MB | 1 年前
    3
  • pdf文档 To Int or to Uint, This is the Question

    com/in/alexdathskovsky • what will the result be if we call add_uint8(255u, 1u)?SURPRISE AGAIN: INTEGER PROMOTION Alex Dathskovsky | alex.dathskovsky@speedata.io | www.linkedin.com/in/alexdathskovsky 256SIGNED the result if we will call my_add(uint64_t(1), int64_t(-2)) ?SURPRISE AGAIN: MORE INTEGER PROMOTION Alex Dathskovsky | alex.dathskovsky@speedata.io | www.linkedin.com/in/alexdathskovsky 184467
    0 码力 | 102 页 | 3.64 MB | 5 月前
    3
  • pdf文档 Conan 1.28 Documentation

    result in losing the path of the artifact in the BuildInfo in Artifactory and also fail in the promotion process. We are currently working along with the Artifactory team to solve those problems. Until the specified reference will NOT be retrieved. Useful together with ‘conan copy’ to automate the promotion of packages to a different user/channel. Only if a reference is specified, it will download all result in losing the path of the artifact in the BuildInfo in Artifactory and also fail in the promotion process. We are currently working along with the Artifactory team to solve those problems. Until
    0 码力 | 699 页 | 5.39 MB | 1 年前
    3
  • pdf文档 Conan 1.29 Documentation

    result in losing the path of the artifact in the BuildInfo in Artifactory and also fail in the promotion process. We are currently working along with the Artifactory team to solve those problems. Until the specified reference will NOT be retrieved. Useful together with ‘conan copy’ to automate the promotion of packages to a different user/channel. Only if a reference is specified, it will download all result in losing the path of the artifact in the BuildInfo in Artifactory and also fail in the promotion process. We are currently working along with the Artifactory team to solve those problems. Until
    0 码力 | 703 页 | 5.41 MB | 1 年前
    3
  • pdf文档 Conan 1.30 Documentation

    result in losing the path of the artifact in the BuildInfo in Artifactory and also fail in the promotion process. We are currently working along with the Artifactory team to solve those problems. Until the specified reference will NOT be retrieved. Useful together with ‘conan copy’ to automate the promotion of packages to a different user/channel. Only if a reference is specified, it will download all result in losing the path of the artifact in the BuildInfo in Artifactory and also fail in the promotion process. We are currently working along with the Artifactory team to solve those problems. Until
    0 码力 | 715 页 | 5.39 MB | 1 年前
    3
  • pdf文档 Conan 1.31 Documentation

    result in losing the path of the artifact in the BuildInfo in Artifactory and also fail in the promotion process. We are currently working along with the Artifactory team to solve those problems. Until the specified reference will NOT be retrieved. Useful together with ‘conan copy’ to automate the promotion of packages to a different user/channel. Only if a reference is specified, it will download all result in losing the path of the artifact in the BuildInfo in Artifactory and also fail in the promotion process. We are currently working along with the Artifactory team to solve those problems. Until
    0 码力 | 721 页 | 5.41 MB | 1 年前
    3
共 72 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 8
前往
页
相关搜索词
CallingFunctionsTutorialBacktoBasicsFunctionCallResolutionOverloadJustInTimeCompilationTheNextBigThingC++高性性能高性能并行编程优化课件12ToIntorUintThisistheQuestionConan1.28Documentation1.291.301.31
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩