软件工具 SofTool.CN 本次搜索耗时 0.165 秒,为您找到 338 个相关结果.
  • 用法

    1716 2025-01-15 《Editor.md》
    创建一个 Markdown 编辑器 Markdown 转 HTML 选项 Options 创建一个 Markdown 编辑器 <link rel ="stylesheet" href ="editor.md/css/editormd.min.css" /> <div id ="editor" > <!-- Tips: Edit...
  • 6.2 Zinx-V0.6代码实现

    首先 iserver 的 AddRouter() 的接口要稍微改一下,增添MsgId参数 zinx/ziface/iserver.go package ziface //定义服务器接口 type IServer interface { //启动服务器方法 Start() //停止服务器方法 Stop()...
  • DPT 详解

    1667 2025-09-03 《MBR》
    DPT 范围 DPT 各字段 系统ID (System ID) ,又称 分区表类型(Parttition Type)★ 示例1 DPT 范围 MBR分区表(DPT)的准确范围 字段 起始偏移(十六进制) 结束偏移(十六进制) 大小(字节) 描述 分区表(DPT) 0x1BE 0x1FD 64 包...
  • 3.4 Zinx-V0.3代码实现

    zinx/znet/server.go package znet import ( "fmt" "net" "time" "zinx/ziface" ) //iServer 接口实现,定义一个Server服务类 type Server struct { //服务器的名称 Nam...
  • @作者

    作者:刘丹冰 Aceldhttps://www.yuque.com/aceld/npyr8s/ https://www.yuque.com/aceld/tsgooa/
  • 分区和卷

    分区 和 卷 一、分区与卷的关系 1. 层级结构 2. 核心区别 3. 典型生命周期 二、为什么说“分区包含卷”? 1. 空间包含 2. 功能依赖 3. 多卷与多分区 三、实际案例验证 1. 查看分区与卷的绑定(Linux) 2. Windows中的对应关系 四、特殊场景辨析 1. 未格式化的分区 2. ...
  • highlight.js

    highlight.js 库介绍 库的基本信息 使用场景 1. 代码示例 1.1 导入路径解析 2. 与完整导入的区别 2.1 完整导入(不推荐) 2.2 按需导入(推荐) 3. 完整的配置示例 3.1 基础配置 3.2 在 Vue 组件中使用 4. 自动高亮配置 4.1 全局自动高亮 4.2 Vue 指令封装 5. 支持的语言列...
  • 显示原型属性 隐式原型属性

    基础知识 1. 显式原型属性(prototype ) 定义 特点 示例 2. 隐式原型属性(__proto__ 或 [[Prototype]] ) 定义 特点 示例 3. 关键区别对比 总结 Vue 实例对象 不是来源于 Vue构造函数 ? 为什么 Vue实例对象 没有 prototype ? 1. 原型链的基本...
  • Pictures of the Tesla Model 3 Hardware

    1557 2024-08-01 《Looking for ports》
    Pictures of the Tesla Model 3 MCU board, SD card, HRL and flashing LEDs #3 Pics or it didn’t happen Exploring the content of the SD card Other stuff on the SD card Let’s power ...
  • os

    1553 2023-09-16 《Go 语言》
    获取系统环境变量 获取系统环境变量 Golang 要获取系统的环境变量需要导入”os”包,通过os包中的 Getenv() 来获取。 func Getenv(key string ) string { //... } 示例代码: package main import ( "fmt" "os" ) func m...