严富坤的知识库专栏 本次搜索耗时 0.152 秒,为您找到 342 个相关结果.
  • 什么是MCP

    简介 为什么选择 MCP? 总体架构 架构组件说明: 简介 MCP(Model Context Protocol)是一种开放协议,用于规范应用程序如何为大语言模型(LLM)提供上下文信息。可以将 MCP 类比为 AI 应用程序的 USB-C 接口 。就像 USB-C 提供了一种统一的方式来连接设备与各种外设一样,MCP 提供了一种标准化的方法,...
  • 桥接模式

    1395 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...
  • 访问者模式

    1395 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...
  • 状态模式

    1388 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...
  • 备忘录模式

    1388 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...
  • 中介模式

    1382 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...
  • LINQ运算符

    1381 2024-06-17 《C#编程指南》
    LINQ运算符的基本概念 LINQ运算符的意义 投影运算符 Select运算符 SelectMany运算符 过滤运算符 Where运算符 排序运算符 OrderBy运算符 OrderByDescending运算符 ThenBy运算符 ThenByDescending运算符 分组运算符 GroupBy运算符 聚合运算符 Count运...
  • 模板方法模式

    1380 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...
  • Spring Security中的默认过滤器

    以下是Spring Security中一些默认的Filter,按照它们在Filter Chain中的顺序排列: 顺序 Filter类名 描述 1 ChannelProcessingFilter 确保请求通过正确的通道(如HTTP或HTTPS)。 2 WebAsyncManagerIntegrationFilter 集...
  • 装饰器模式

    1375 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...