严富坤的知识库专栏 本次搜索耗时 0.024 秒,为您找到 467 个相关结果.
  • 如何给Nginx安装SSL证书?

    一、上传证书文件 二、配置Nginx 三、把http请求重定向为https 四、验证示例 准备工作,首先去阿里云申请免费的SSL证书,申请过程很简单,根据提示信息就可以快速完成。中途会要求验证你的域名的所有权信息,需要你去配置一下你的域名解析记录,就是根据阿里云给出的信息新增一条TXT类型的主机记录类型。过几分钟就可以审核通过,然后把证书下载到本...
  • 中介模式

    700 2024-09-12 《设计模式》
    Question 1: What is the Mediator pattern in software design? 问题 1:什么是软件设计中的中介模式? Answer: The Mediator pattern is a behavioral design pattern that defines an object (the mediat...
  • 迭代器模式

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

    696 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...
  • 命令模式

    696 2024-09-12 《设计模式》
    Question 1: What is the Command pattern in software design? 问题 1:什么是软件设计中的命令模式? Answer: The Command pattern is a behavioral design pattern that turns a request or action into ...
  • 备忘录模式

    693 2024-09-12 《设计模式》
    Question 1: What is the Memento pattern in software design? 问题 1:什么是软件设计中的备忘录模式? Answer: The Memento pattern is a behavioral design pattern that allows an object to capture an...
  • 观察者模式

    693 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...
  • 0x10号中断服务和功能

    1. 设置显示模式(AH = 00h) 2. 设置光标位置(AH = 02h) 3. 读取光标位置和形状(AH = 03h) 4. 读取光标位置(AH = 03h) 5. 显示字符(AH = 0Eh) 6. 滚动窗口(AH = 06h) 7. 读取字符和属性(AH = 08h) 8. 写入字符和属性(AH = 09h) 9. 读取光标形状(A...
  • 桥接模式

    691 2024-09-12 《设计模式》
    Question 1: What is the Bridge pattern in software design? 问题 1:什么是软件设计中的桥接模式? Answer: The Bridge pattern is a structural design pattern that decouples an abstraction from its...
  • 管理组件拥有的状态

    688 2024-04-09 《ArkUI开发教程》
    一、@State修饰符 二、@Prop修饰符 三、@Link修饰符 四、@Provide和@Consume:与后代组件双向同步 五、@Watch修饰符 在声明式UI编程框架中,UI是程序状态的运行结果,用户构建了一个UI模型,其中应用的运行时的状态是参数。当参数改变时,UI作为返回结果,也将进行对应的改变。这些运行时的状态变化所带来的UI的重新...