严富坤的知识库专栏 本次搜索耗时 0.024 秒,为您找到 465 个相关结果.
  • 单例模式

    680 2024-09-12 《设计模式》
    Question 1: What is the Singleton pattern in software design? 问题 1:什么是软件设计中的单例模式? Answer: The Singleton pattern is a creational design pattern that ensures a class has only on...
  • 模板方法模式

    680 2024-09-12 《设计模式》
    Question 1: What is the Template Method pattern in software design? 问题 1:什么是软件设计中的模板方法模式? Answer: The Template Method pattern is a behavioral design pattern that defines the s...
  • 解释器模式

    680 2024-09-12 《设计模式》
    Question 1: What is the Interpreter pattern in software design? 问题 1:什么是软件设计中的解释器模式? Answer: The Interpreter pattern is a behavioral design pattern that provides a way to eval...
  • 状态模式

    678 2024-09-12 《设计模式》
    Question 1: What is the State pattern in software design? 问题 1:什么是软件设计中的状态模式? Answer: The State pattern is a behavioral design pattern that allows an object to change its beha...
  • 组合模式

    676 2024-09-12 《设计模式》
    Question 1: What is the Composite pattern in software design? 问题 1:什么是软件设计中的组合模式? Answer: The Composite pattern is a structural design pattern that allows individual objects a...
  • 深入理解操作系统的进程

    676 2024-10-12 《操作系统原理》
    一、进程是对系统资源的抽象 二、进程的并发运行与交错执行 三、上下文切换的过程与步骤 1. 保存当前进程的上下文(状态) 2. 调用调度器(Scheduler) 3. 加载新进程的上下文(状态) 4. 切换内核栈和用户栈(如果需要) 5. 恢复执行 四、上下文切换的注意事项 五、引发上下文切换的原因 六、总结 参考资料 一、进程...
  • 责任链模式

    675 2024-09-12 《设计模式》
    Question 1: What is the Chain of Responsibility pattern in software design? 问题 1:什么是软件设计中的责任链模式? Answer: The Chain of Responsibility pattern is a behavioral design pattern use...
  • 原型模式

    675 2024-09-12 《设计模式》
    Question 1: What is the Prototype pattern in software design? 问题 1:什么是软件设计中的原型模式? Answer: The Prototype pattern is a creational design pattern that allows objects to be copied...
  • 接口

    1. 什么是接口? 2. 接口的基本用法 2.1 定义接口 2.2 可选属性 2.3 只读属性 2.4 函数类型 2.5 索引签名 2.6 类类型 3. 高级接口特性 3.1 继承接口 3.2 混合类型 3.3 接口和类的实现 4. 实际应用中的接口 4.1 定义API请求和响应 4.2 配置对象 4.3 第三方库的类型定义 ...
  • 工厂方法模式

    664 2024-09-12 《设计模式》
    Question 1: What is the Factory Method pattern in software design? 问题 1:什么是软件设计中的工厂方法模式? Answer: The Factory Method pattern is a creational design pattern that defines an inte...