个人工作笔记 本次搜索耗时 0.060 秒,为您找到 34 个相关结果.
  • 单例模式

    3151 2021-10-18 《设计模式》
    单例模式 意图 问题 解决方案 真实世界类比 单例模式结构 伪代码 单例模式适合应用场景 实现方式 单例模式优缺点 与其他模式的关系 代码示例 单例模式 亦称:单件模式、Singleton 意图 单例模式 是一种创建型设计模式, 让你能够保证一个类只有一个实例, 并提供一个访问该实例的全局节点。 问题 单例...
  • 基础

    3091 2022-02-10 《C++ 编程》
    { // Place your snippets for cpp here . Each snippet is defined under a snippet name and has a prefix , body and // description . The prefix is wh...
  • 低功耗和 UPF 介绍

    2957 2023-05-08 《verilog》
    前言 根据个人对网上公开资料的理解做相关解释说明,并引用部分图片和内容做补充说明,相关链接放在文后。 一、概述 IEEE1801 UPF — A brief introduction and overview Unified Power Format (UPF ) 用于描述 power intent (供电意图 )的标准,基于TCL 语言编...
  • UPF

    2891 2023-04-21 《verilog》
    1.1、動態和靜態功耗(Dynamic and Static Power) 1.1.1、Dynamic power Switch power:取决于时钟频率(每秒翻转的次数)以及开关活动性(在连续时钟周期实际反转的次数) Internal power: 当输入信号处于翻转的...
  • gmock_for_dummies.md

    2834 2021-05-04 《Google test》
    gMock for Dummies What Is gMock? Why gMock? Getting Started A Case for Mock Turtles Writing the Mock Class How to Define It Where to Put It Using Mocks in Tests Setting Exp...
  • 源码编译及调试

    2718 2022-10-04 《Electron 源码浅析》
    Electron Debugging Generic Debugging Printing Stacktraces Breakpoint Debugging Platform-Specific Debugging Debugging with the Symbol Server Electron Debugging There are ma...
  • JFrog

    2525 2021-11-13 《Settings》
    Step 1: Download JFrog Artifactory Docker image Pull the latest Docker image of JFrog Artifactory. Confirm Docker images: Step 2: Create Data Directory Create data directory on ...
  • vscode

    2472 2021-05-30 《Settings》
    debug js settings 设置分割线 settings -> ruler -> Edit in settings.json clang-format path debug js settings { // Use IntelliSense to learn about possible attributes. ...
  • 3. 类

    2214 2022-02-10 《C++ 编程》
    构造函数的职责 隐式类型转换 可拷贝类型和可移动类型 结构体 VS. 类 继承 多重继承 接口 运算符重载 存取控制 声明顺序 构造函数的职责 不要在构造函数中调用虚函数, 也不要在无法报出错误时进行可能失败的初始化. 隐式类型转换 不要定义隐式类型转换. 对于转换运算符和单参数构造函数 , 请使用 explicit ...
  • Creating a New Electron Browser Module

    2178 2022-10-04 《Electron 源码浅析》
    Creating a New Electron Browser Module Add your files to Electron’s project configuration Create API documentation Set up ObjectTemplateBuilder and Wrappable Expose your API t...