书栈网 · BookStack 本次搜索耗时 0.025 秒,为您找到 230 个相关结果.
  • update

    1564 2018-12-10 《Vue.js 技术揭秘》
    update 总结 update Vue 的 _update 是实例的一个私有方法,它被调用的时机有 2 个,一个是首次渲染,一个是数据更新的时候;由于我们这一章节只分析首次渲染部分,数据更新部分会在之后分析响应式原理的时候涉及。_update 方法的作用是把 VNode 渲染成真实的 DOM,它的定义在 src/core/instance/l...
  • Reading Types

    Reading Types Primitives and Lists Functions Anonymous Functions Named Functions Type Annotations Reading Types In the Core Language section of this book, we ran a bunch ...
  • 底层驱动接口

    2300 2018-09-20 《RT-Thread编程手册》
    底层驱动接口 文件系统初始化 底层驱动接口 RT-Thread DFS 文件系统针对下层媒介使用的是RT-Thread 的设备IO系统,其中主要包括设备读写等操作。但是有些文件系统并不依赖于RT-Thread 的设备系统,例如1.0.x分支引入的只读文件系统、网络文件系统等。对于常使用的FAT 文件系统,下层驱动必须用块设备的形式来实现。 文...
  • 双向循环链表

    双向循环链表 双向循环链表 在“数据结构”课程中,如果创建某种数据结构的双循环链表,通常采用的办法是在这个数据结构的类型定义中有专门的成员变量 data, 并且加入两个指向该类型的指针next和prev。例如: typedef struct foo { ElemType data ; struct foo ...
  • FatFs

    5388 2018-09-20 《RT-Thread编程手册》
    FatFs FatFs 相关宏 FatFs FatFs是专为小型嵌入式设备开发的一个兼容微软fat的文件系统,采用ANSI C编写,采用抽象的硬件I/O层以及提供持续的维护,因此具有良好的硬件无关性以及可移植性。 FatFs 官方网址 http : //elm-chan.org/fsw/ff/00index_e.html RT-Th...
  • 14.8. Syntax highlighting

    Grammars / syntax highlighting Grammars / syntax highlighting PRQL contains multiple grammar definitions to enable tools to highlight PRQL code. These are all intended to provi...
  • Error Handling and Tasks

    Error Handling and Tasks Some Historical Context Null Exceptions Error Handling and Tasks One of the guarantees of Elm is that you will not see runtime errors in practice. N...
  • 简介

    2191 2018-09-20 《RT-Thread编程手册》
    简介 RT-Thread 的文件系统采用了三层的结构,如图 文件系统结构图 所示: 最顶层的是一套面向嵌入式系统,专门优化过的虚拟文件系统(接口)。通过它,RT-thread 操作系统能够适配下层不同的文件系统格式,例如个人电脑上常使用的FAT 文件系统,或者是嵌入式设备中常见的flash 文件系统(YAFFS2、JFFS2 等)。 接下来中间...
  • Types

    Types An Example of Type Inference Types One of Elm’s major benefits is that users do not see runtime errors in practice . This is possible because the Elm compiler can analyz...
  • Types

    Types An Example of Type Inference Types One of Elm’s major benefits is that users do not see runtime errors in practice . This is possible because the Elm compiler can analyz...