摘要:
依赖注入概念 概念 例子: 接口 两个实现类: using Microsoft.Extensions.DependencyInjection; namespace ioc1 { internal class Program { static void Main(string[] args) { Se 阅读全文
摘要:
CPU实现 CPU的数据通路 module CPU( input[15:0] inM, // M value input (M = contents of RAM[A]) instruction, // Instruction for execution input clock, reset, // 阅读全文
摘要:
2024 ASP.NET Core 开发者路线图 阅读全文
摘要:
门电路实现 与非门 可以使用两个NMOS管串联跟两个PMOS管并联构成: NMOS管是当gate输入高电压导通,PMOS管是当gate输入低电压的时候导通。 对于其他门电路: 等价电路:交换律、结合律、分配律、德摩根律、幂等律、双重否定律 与非门Verilog HDL表示 module Nand(i 阅读全文
摘要:
改注册表无限试用 start.bat文件 @echo off setlocal enabledelayedexpansion chcp 65001 > nul REM 获取当前日期,格式为MM/dd/yyyy for /f "delims=" %%a in ('wmic OS Get localda 阅读全文
摘要:
ALU实现 Or16way /** * 16-way Or: * out = (in[0] or in[1] or ... or in[15]) */ module Or16Way(input[15:0] in,output out); // your code here wire out1,out 阅读全文
摘要:
### 02第一章 逻辑论证之归因论证   ![image-202308 阅读全文
摘要:
# Java面试常见问题总结 ## **Java** ### **基础** 1. Java 中的几种基本数据类型是什么?对应的包装类型是什么?各自占用多少字节呢? 2. String 、 StringBuffer 和 StringBuilder 的区别是什么? String 为什么是不可变的? 3. 阅读全文