书栈网 · BookStack 本次搜索耗时 0.033 秒,为您找到 1217 个相关结果.
  • 5. Portability

    Portability What is embedded-hal? Users of the embedded-hal HAL implementation Driver Application Portability In embedded environments portability is a very important topi...
  • Packaging Mechanics

    Packaging Mechanics Packaging Mechanics That covers the basics of how to use packages to manage namespaces in several common situations. However, another level of how to use pa...
  • Generator Coroutine

    Generator Coroutine State Machines Generator Coroutine Hopefully Chapter 4 helped you get pretty familiar with ES6 generators. In particular, we want to revisit the “Generator...
  • 简介

    简介 常规资料 入门 扩展Blender 插件 脚本 保存你的脚本 文件位置 安装(Installation) 简介 Python是一门面向对象的、交互的解释型编程语言。它集成了模块、异常、动态类型、高水平的动态数据类型和类。Python兼具强大的功能和清晰的语法。 Python脚本是一种强大而灵活的用于扩展Blender功能的方法。...
  • 151. Reverse Words in a String

    题目描述(中等难度) 解法一 解法二 总 题目描述(中等难度) 将字符串的每个单词反过来,单词内部不需要逆转,注意可能会有多余的空格。 解法一 题目很直观,做法也会很直观,哈哈。遍历原字符串,遇到字母就加到一个 temp 变量中,遇到空格,如果 temp 变量不为空,就把 temp 组成的单词加到一个栈中,然后清空 temp ...
  • 3. One JavaScript: avoiding versioning in ECMAScript 6

    837 2019-05-03 《Exploring ES6》
    3. One JavaScript: avoiding versioning in ECMAScript 6 3.1 Versioning 3.1.1 Evolution without versioning 3.2 Strict mode and ECMAScript 6 3.2.1 Supporting sloppy (non-strict) mod...
  • 4.4 Deep modules 深度模块

    2336 2020-10-20 《软件设计的哲学》
    4.4 Deep modules 深度模块 4.4 Deep modules 深度模块 The best modules are those that provide powerful functionality yet have simple interfaces. I use the term deep to describe such modu...
  • 第 1 章 介绍

    7165 2020-10-20 《软件设计的哲学》
    第 1 章 介绍 第 1 章 介绍 Chapter 1 Introduction(It’s All About Complexity) Writing computer software is one of the purest creative activities in the history of the human race. Pro...
  • Classes

    Classes Inheritance Public, private, and protected modifiers Public by default ECMAScript Private Fields Understanding TypeScript’s private Understanding protected Readonl...
  • GDScript: An introduction to dynamic languages

    GDScript: An introduction to dynamic languages About Dynamic nature Pros & cons of dynamic typing Variables & assignment As function arguments: Pointers & referencing: Arrays...