严富坤的知识库专栏 本次搜索耗时 0.023 秒,为您找到 464 个相关结果.
  • 门面模式

    658 2024-09-12 《设计模式》
    Question 1: What is the Facade pattern in software design? 问题 1:什么是软件设计中的门面模式? Answer: The Facade pattern is a structural design pattern that provides a simplified interface t...
  • 策略模式

    658 2024-09-12 《设计模式》
    Question 1: What is the Strategy pattern in software design? 问题 1:什么是软件设计中的策略模式? Answer: The Strategy pattern is a behavioral design pattern that defines a family of algorithm...
  • 访问者模式

    657 2024-09-12 《设计模式》
    Question 1: What is the Visitor pattern in software design? 问题 1:什么是软件设计中的访问者模式? Answer: The Visitor pattern is a behavioral design pattern that allows you to add further oper...
  • Vue实例对象与window对象是什么关系?

    一、全局变量与 window 对象的关系 1. 全局变量成为 window 对象的属性的条件 2. 为什么 Vue 实例通常不会成为 window 的属性 二、示例说明 1. Vue 实例不会默认成为 window 的属性 2. 显式地将 Vue 实例赋值给 window 对象 三、总结 四、深入理解 1. 变量声明方式的影响 2....
  • 深入理解并发

    654 2024-10-14 《操作系统原理》
    1. 时间片轮转(Time-Slicing) 2. 进程调度(Process Scheduling) 3. 上下文切换的快速性 4. 进程的并发性 5. 中断机制 在单核处理器的操作系统上,多任务的本质是通过进程的交错执行 来实现的,从用户角度来看,这种交错执行给人一种多个任务同时执行 的错觉。这种效果得以实现的基础可以归纳为以下几个关...
  • 读写文件

    652 2024-04-20 《Python基础》
    # 写入文件 def write_to_file ( filename , content ): with open ( filename , 'w' ) as file : file . write ( content ) print ( "Content has been writte...
  • 开发环境搭建

    649 2024-04-28 《深入Android开发》
    Android Studio历史版本下载 Android studio Giraffe 2022.3.1
  • About meta cognition

    我一直觉得将正确的学习方法或工作流程养成习惯,很多问题就会迎刃而解 翻译:I have always believed that once you develop the habit of using the right learning methods or work processes, many problems will be solved ...
  • TypeScript中的never类型

    1. never 类型的定义 1.1 基本用法 2. never 类型的使用场景 2.1 异常处理 2.2 类型守卫中的穷尽检查 3. never 类型的高级特性 3.1 与联合类型的交互 3.2 作为返回类型的严格性 结论 在TypeScript中,never 类型是一个特殊且高级的类型,表示永不存在的值。它常用于函数永远不会返回(如抛...
  • 建造者模式

    648 2024-09-12 《设计模式》
    Question 1: What is the Builder pattern in software design? 问题 1:什么是软件设计中的建造者模式? Answer: The Builder pattern is a creational design pattern that separates the construction of ...