严富坤的知识库专栏 本次搜索耗时 0.257 秒,为您找到 342 个相关结果.
  • 迭代器模式

    1477 2024-09-12 《设计模式》
    Question 1: What is the Iterator pattern in software design? 问题 1:什么是软件设计中的迭代器模式? Answer: The Iterator pattern is a behavioral design pattern that provides a way to access ele...
  • git与github

    1476 2025-02-05 《Git知识大全》
    22.1 为开源代码提供版本库 22.2 创建 GitHub 的版本库 22.2.1 在 GitHub 上创建新仓库 22.2.2 将本地仓库推送到 GitHub 22.3 开源代码的社会化编程 22.4 关注者 22.5 新闻源 22.6 复刻(Fork) 22.7 创建合并请求(Pull Request, PR) 22.7.1 提交 PR...
  • 解释器模式

    1474 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...
  • 装饰器模式

    1471 2024-09-12 《设计模式》
    Question 1: What is the Decorator pattern in software design? 问题 1:什么是软件设计中的装饰器模式? Answer: The Decorator pattern is a structural design pattern that allows behavior to be adde...
  • 观察者模式

    1471 2024-09-12 《设计模式》
    Question 1: What is the Observer pattern in software design? 问题 1:什么是软件设计中的观察者模式? Answer: The Observer pattern is a behavioral design pattern that defines a one-to-many depend...
  • 责任链模式

    1469 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...
  • 策略模式

    1468 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...
  • Linux目录结构概览

    1460 2025-02-08 《Linux基础知识》
    📌 Linux 目录结构详细解析 📌 1. Linux 目录结构概览 📌 2. 目录详细解析 🔹 / (根目录) 🔹 /bin/ (基本命令) 🔹 /sbin/ (系统管理命令) 🔹 /boot/ (启动引导) 🔹 /dev/ (设备文件) 🔹 /etc/ (配置文件) 🔹 /home/ (用户家目录) 🔹 /var/ ...
  • 门面模式

    1455 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...
  • 合并

    1452 2025-02-05 《Git知识大全》
    10.1 合并的例子 10.1.1 为合并做准备 10.1.2 合并两个分支 10.1.3 有冲突的合并 10.2 处理合并冲突 10.2.1 确定冲突的文件 10.2.2 检查冲突 10.2.3 Git 是如何追踪冲突的 10.2.4 结束解决冲突 10.2.5 中止或重新启动合并 10.3 合并策略 10.3.1 退化合并(Fast-...