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

无数据

分类

全部后端开发(15)Rust(15)

语言

全部英语(4)中文(简体)(3)韩语(2)西班牙语(1)日语(1)葡萄牙语(1)中文(繁体)(1)中文(繁体)(1)

格式

全部PDF文档 PDF(15)
 
本次搜索耗时 0.097 秒,为您找到相关结果约 15 个.
  • 全部
  • 后端开发
  • Rust
  • 全部
  • 英语
  • 中文(简体)
  • 韩语
  • 西班牙语
  • 日语
  • 葡萄牙语
  • 中文(繁体)
  • 中文(繁体)
  • 全部
  • PDF文档 PDF
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 The Rust Programming Language,2nd Edition

    Rust. In this chapter we’ll talk about ownership as well as several related features: borrowing, slices, and how Rust lays data out in memory. 4.1 What Is Ownership? Rust’s central feature is ownership Next, we’ll look at a different kind of reference: slices. 99 4.3 Slices Another data type that does not have ownership is the slice. Slices let you reference a contiguous sequence of elements in around that need to be kept in sync. Luckily, Rust has a solution to this problem: string slices. String Slices A string slice is a reference to part of a String, and looks like this: let s = String::from("hello
    0 码力 | 617 页 | 1.54 MB | 1 年前
    3
  • pdf文档 Comprehensive Rust(English) 202412

    48 9.2 Exclusive References . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 49 9.3 Slices . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 49 9.4 Strings . array is part of its type, which means that [u8; 3] and [u8; 4] are considered two different types. Slices, which have a size determined at runtime, are covered later. • Try accessing an out-of-bounds array minutes. It contains: Slide Duration Shared References 10 minutes Exclusive References 10 minutes Slices 10 minutes Strings 10 minutes Exercise: Geometry 15 minutes 9.1 Shared References A reference provides
    0 码力 | 382 页 | 1.00 MB | 11 月前
    3
  • pdf文档 Comprehensive Rust ?

    46 9.2 Exclusive References . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 47 9.3 Slices . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 47 9.4 Strings . array is part of its type, which means that [u8; 3] and [u8; 4] are considered two different types. Slices, which have a size determined at runtime, are covered later. • Try accessing an out-of-bounds array minutes. It contains: Slide Duration Shared References 10 minutes Exclusive References 10 minutes Slices: &[T] 10 minutes Strings 10 minutes Exercise: Geometry 15 minutes 9.1 Shared References A reference
    0 码力 | 378 页 | 1009.46 KB | 1 年前
    3
  • pdf文档 2021-11-22 - Rust CTCFT - Rust for Linux

    Padding: current solution, punting to developer /// Specifies that a type is safely writable to byte slices. /// /// This means that we don't read undefined values (which leads to UB) in preparation for writing byte slice. It also ensures that no potentially sensitive information is leaked into the /// byte slices. /// /// # Safety /// /// A type must not include padding bytes and must be fully initialised to current solution /// Specifies that a type is safely readable from byte slices. /// /// Not all types can be safely read from byte slices; examples from ///
    0 码力 | 53 页 | 332.50 KB | 9 月前
    3
  • pdf文档 Comprehensive Rust(Español) 202412

    49 9.2 Referencias exclusivas . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 50 9.3 Slices . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 51 9.4 Cadenas de _parte de su tipo), lo que significa que [u8; 3] y [u8; 4] se consideran dos tipos diferentes. Los slices, que tienen un tamaño determinado al tiempo de ejecución, serán discutidos mas tarde. • Prueba a Contiene: Diapositiva Duración Enums compartidas 10 minutos Referencias exclusivas 10 minutos Slices: &[T] 10 minutos Cadenas de texto (Strings) 10 minutos Ejercicio: geometría 15 minutos 9.1 Enums
    0 码力 | 389 页 | 1.04 MB | 11 月前
    3
  • pdf文档 Comprehensive Rust(Português do Brasil) 202412

    49 9.2 Referências Exclusivas . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 50 9.3 Slices (Fatias) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 51 9.4 Strings . parte do seu tipo, o que significa que [u8; 3] e [u8; 4] são considerados dois tipos diferentes. Slices (fatias), que têm um tamanho determinado em tempo de execução, são abordados mais tarde. • Tente contains: Slide Duration Referências Compartilhadas 10 minutes Referências Exclusivas 10 minutes Slices: &[T] 10 minutes Strings 10 minutes Exercício: Geometria 15 minutes 9.1 Referências Compartilhadas
    0 码力 | 389 页 | 1.05 MB | 11 月前
    3
  • pdf文档 Comprehensive Rust(简体中文) 202412

    array is part of its type, which means that [u8; 3] and [u8; 4] are considered two different types. Slices, which have a size determined at runtime, are covered later. • 请尝试访问出界数组元素。系统会在运行时检查数组访问。Rust 通常会通过优化消除这些检查,以 segment should take about 55 minutes. It contains: Slide Duration 共享引用 10 minutes 独占引用 10 minutes Slices: &[T] 10 minutes 字符串 10 minutes 练习:几何图形 15 minutes 9.1 共享引用 引用提供了一种可以访问另一个值但无需对该值负责的方式,也被称为“借用”。共享引用处于只读状态, (&[i32]) no longer mentions the array length. This allows us to perform computation on slices of different sizes. • Slices always borrow from another object. In this example, a has to remain 'alive' (in scope)
    0 码力 | 359 页 | 1.33 MB | 11 月前
    3
  • pdf文档 Comprehensive Rust(한국어) 202412

    array is part of its type, which means that [u8; 3] and [u8; 4] are considered two different types. Slices, which have a size determined at runtime, are covered later. • 범위를 벗어난 배열 요소에 액세스해 보세요. 배열 액세스는 인덱스로 접근할 수있습니다. 하지만 범위를 벗어나면 패닉이 발생합니 다. 대신 get 을 사용하면 Option 을 반환합니다. pop 함수는 마지막 요소를 제거합니다. • Slices are covered on day 3. For now, students only need to know that a value of type Vec gives access to 제 23 장 수명 This segment should take about 1 hour and 10 minutes. It contains: Slide Duration Slices: &[T] 10 minutes 허상 (dangling) 참조 10 minutes 함수 호출에서의 수명 10 minutes 수명 5 minutes 수명 5 minutes 연습문제:
    0 码力 | 369 页 | 1.29 MB | 11 月前
    3
  • pdf文档 Comprehensive Rust

    array is part of its type, which means that [u8; 3] and [u8; 4] are considered two different types. Slices, which have a size determined at runtime, are covered later. • 범위를 벗어난 배열 요소에 액세스해 보세요. 배열 액세스는 인덱스로 접근할 수있습니다. 하지만 범위를 벗어나면 패닉이 발생합니 다. 대신 get 을 사용하면 Option 을 반환합니다. pop 함수는 마지막 요소를 제거합니다. • Slices are covered on day 3. For now, students only need to know that a value of type Vec gives access to 제 23 장 수명 This segment should take about 1 hour and 10 minutes. It contains: Slide Duration Slices: &[T] 10 minutes 허상 (dangling) 참조 10 minutes 함수 호출에서의 수명 10 minutes 수명 5 minutes 수명 5 minutes 연습문제:
    0 码力 | 368 页 | 1.29 MB | 1 年前
    3
  • pdf文档 Comprehensive Rust(繁体中文)

    array is part of its type, which means that [u8; 3] and [u8; 4] are considered two different types. Slices, which have a size determined at runtime, are covered later. • 請嘗試存取超出範圍的陣列元素。系統會在執行階段檢查存取陣列的行為。Rust 23 部分 生命週期 This segment should take about 1 hour and 10 minutes. It contains: Slide Duration Slices: &[T] 10 minutes 迷途參照 10 minutes 函式呼叫中的生命週期 10 minutes 生命週期 5 minutes 生命週期 5 minutes 練習:Protobuf 因此,為了輕鬆建立完整陣列的切片,我們可以使用 &a[..]。 • s 是對 i32s 切片的參照。請注意,s (&[i32]) 的型別不再提及陣列長度,這有利於我們對不同大 小的切片執行運算。 126 • Slices always borrow from another object. In this example, a has to remain 'alive' (in scope) for at least
    0 码力 | 358 页 | 1.41 MB | 11 月前
    3
共 15 条
  • 1
  • 2
前往
页
相关搜索词
TheRustProgrammingLanguage2ndEditionComprehensiveEnglish20241220211122CTCFTforLinuxEspaolPortugudoBrasil简体中文简体中文繁体繁体中文
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩