Computer System Architecture: CPU Performance Formula Basic Knowledge CPU Time: The time a program runs on the CPU. (Excluding I/O time) Clock Frequency: The frequency of the internal main clock of the CPU, indicating how many cycles can be completed in one se…

2020年2月4日 0条评论 5557点热度 2人点赞 痴者工良 阅读全文

计算机系统结构:CPU性能公式 基础知识 CPU 时间:一个程序在 CPU 上运行的时间。(不包括I/O时间) 主频、时钟频率:CPU 内部主时钟的频率,表示1秒可以完成多少个周期。 例如,主频为 4.1GHz,表示每秒可以完成 4.1*109 个时钟周期。 时钟周期:时钟周期也称为振荡周期,定义为时钟频率的倒数。时钟周期是计算机中最基本的、最小的时间单位。在一个时钟周期内,CPU仅完成一个最基本的动作。 时钟周期 = 1 / 频率,例如 1/ 4.1*109 。 CPU 的时钟周期越短,CPU 性能越好。 指令周…

2020年2月4日 0条评论 6355点热度 2人点赞 痴者工良 阅读全文

Computer System Architecture - Introduction Knowledge Points Hierarchical structure of computer systems Computer architecture, computer organization, and implementation of computers Trade-offs between hardware and software as well as quantitative design princi…

2020年2月3日 3条评论 1018点热度 0人点赞 痴者工良 阅读全文

计算机系统结构-概论 考察知识点 计算机系统的层次结构 计算机系统结构、计算机组成、计算机的实现 计算机的软硬件取舍及定量设计原理 软件、应用、器件的发展对系统结构的影响 系统结构中的并行性开发及计算机系统的分类 知识难度: 每个知识点使用 ※ 号标记掌握程度和类型。 ※:标识,能够记住知识点和概念; ※※:领会,需要领悟和理解,能够消化和吸收,对知识点做出正确的解释、说明、论述。 ※※※:简单应用,能够运用课程中的知识点,例如计算、绘图,去分析、实现和解决一般的应用问题。 ※※※※:综合应用,要求考生能够运用课程…

2020年2月3日 3条评论 5397点热度 0人点赞 痴者工良 阅读全文

ASP.NET Core Getting Started to Mastery - Resource Collection Navigation Table of Contents ASP.NET Core Getting Started to Mastery - Resource Collection Navigation Learning Path Comprehensive Resource Navigation for the Learning Path Introduction Getting Start…

2020年2月3日 0条评论 1425点热度 1人点赞 痴者工良 阅读全文

[ASP.NET Core 从入门到精通-资源收集导航]() 目录 ASP.NET Core 从入门到精通-资源收集导航 学习路线 学习路线资源导航大全 1,介绍 2,入门 3,教程 4,基础知识 5,Razor页面 6,MVC 7,Web API 8,授权认证 9,安全性 10,测试、调试、API测试 11,SignalR 12,gRPC 13,部署和托管 14,性能优化 开源项目仓库 公众号 学习路线 来自 dotNET匠人 的(中文翻译) ASP.NET Core开发者成长路线图 原英文地址 ASP.NET …

2020年2月3日 0条评论 4616点热度 1人点赞 痴者工良 阅读全文

1. Hierarchical Structure of Computer Systems From a linguistic perspective, a computer is a combination of hardware and software, which can be organized into a hierarchical structure composed of multi-layered machine-level components based on functionality. D…

2020年2月2日 1条评论 4385点热度 1人点赞 痴者工良 阅读全文

1,计算机系统的层次结构 从语言角度来看,一台计算机是由软硬件组合成的,按照功能划分,可以形成多层机器级组成的层次结构。 不同层次的语言,可以使用翻译或解释技术来实现。例如 C# 语言是应用语言,在编译时会生成 IL 语言(高级语言),属于翻译(Translation 美 /trænzˈleɪʃn,trænsˈleɪʃn/ )。 在启动程序时,IL 翻译成汇编,由操作系统执行。 不断将高一级的语言转换为低一级的语言。 而解释(Interpretation 美 /ɪnˌtɜːrprəˈteɪʃn/) 则是指低一层的机…

2020年2月2日 1条评论 4967点热度 1人点赞 痴者工良 阅读全文

1. Determine Type Determine Whether Some Type 1.1 Classes and Delegates 1.1.1 Determine Whether Type or Delegate 1.1.2 Determine Whether Generic 1.1.3 Generic Parameter Names and Constraints Generic Constraints GenericParameterAttributes Enumeration Generic Co…

2020年2月2日 2条评论 5797点热度 1人点赞 痴者工良 阅读全文

1,判断类型 判断是否某种类型 1.1 类和委托 1.1.1 判断是否类型或委托 1.1.2 判断是否泛型 1.1.3 泛型的参数名称和泛型限定 泛型约束 GenericParameterAttributes 枚举 泛型约束关系 1.1.4 是否委托 1.1.5 访问修饰符 1.1.6 密封类、静态类型、抽象类 1.1.7 嵌套类访问权限 1.1.8 特性 1.1.9 父类、接口 1.2 值类型 1.3 接口 1.4 数组 2, 类型成员 2.1 类 2.1.1 访问修饰符 2.1.2 其它修饰符 2.1.3 字段…

2020年2月2日 2条评论 5618点热度 1人点赞 痴者工良 阅读全文

1. InvokeMember 1.1 InvokeMember Parameters 1.1.1 name 1.1.2 invokeAttr 1.1.3 binder 1.1.4 target 1.1.5 args 1.1.6 Return 1.1.7 BindingFlags 1.1.8 Based on Visibility 1.1.9 Case Sensitivity and Search Hierarchy 1.1.10 Specify Operations on Members 1.2 Practica…

2020年1月18日 1条评论 1459点热度 0人点赞 痴者工良 阅读全文

1,InvokeMember 1.1 InvokeMember 参数 1.1.1 name 1.1.2 invokeAttr 1.1.3 binder 1.1.4 target 1.1.5 args 1.1.6 返回 1.1.7 BindingFlags 1.1.8 根据是否公开 1.1.9 大小写和搜索层次 1.1.10 指定对成员进行何种操作 1.2 实践使用 InvokeMember 和成员的重载方法 1.2.1 静态方法和实例方法 1.2.2 方法参数 1.2.3 字段属性 1.2.4 默认成员 1.2.5…

2020年1月18日 1条评论 4341点热度 0人点赞 痴者工良 阅读全文

1. Assignment and Reading of Property Fields 2. Custom Attributes and Attribute Lookup 2.1 Specifications and Custom Attributes 2.1.1 Defining Attributes 2.1.2 Restricting Attribute Usage 2.1.3 Attribute Constructors and Properties 2.2 Retrieving Attributes 2.…

2020年1月12日 2条评论 6265点热度 0人点赞 痴者工良 阅读全文

1,属性字段的赋值和读值 2,自定义特性和特性查找 2.1 特性规范和自定义特性 2.1.1 定义特性 2.1.2 限制特性的使用 2.1.3 特性的构造函数和属性 2.2 检索特性 2.2.1 方式一 2.2.2 方式二 3,设计一个数据验证工具 3.1 定义抽象验证特性类 3.2 实现多个自定义验证特性 3.3 检查特性是否属于自定义验证特性 3.4 检查属性值是否符合自定义验证特性的要求 3.5 实现解析功能 3.6 编写一个模型类 3.7 执行验证 3.8 总结 [......] 继续阅读

2020年1月12日 2条评论 6186点热度 0人点赞 痴者工良 阅读全文

1. Writing a Dependency Injection Framework 1.1 Routing Index 1.1.1 Checking if the Controller exists 1.1.2 Checking if the Action exists 1.2 Dependency Instantiation 1.3 Instantiation of Type, Dependency Injection, Calling Method 2. Writing Controllers and Pa…

2020年1月12日 1条评论 13074点热度 0人点赞 痴者工良 阅读全文

1,编写依赖注入框架 1.1 路由索引 1.1.1 判断控制器 Controller 是否存在 1.1.2 判断 Action 是否存在 1.2 依赖实例化 1.3 实例化类型、依赖注入、调用方法 2,编写控制器和参数类型 2.1 编写类型 2.2 实现控制器 3,实现低配山寨 ASP.NET Core [......] 继续阅读

2020年1月12日 1条评论 13643点热度 0人点赞 痴者工良 阅读全文

1. MemberInfo 1.1 Exercise - Get Type Members and Output Information 1.2 MemberType Enumeration 1.3 MemberInfo Get Member Method and Call 1.4 Get Inherited Method Information (DeclaringType and ReflectedType) 2. Reflection from IL 2.1 Get Properties Construct …

2020年1月11日 1条评论 4576点热度 0人点赞 痴者工良 阅读全文

1,MemberInfo 1.1 练习-获取类型的成员以及输出信息 1.2 MemberType 枚举 1.3 MemberInfo 获取成员方法并且调用 1.4 获取继承中方法的信息(DeclaringType 和 ReflectedType) 2,从 IL 看反射 2.1 获取属性的构造 2.2 属性的方法 3,方法操作 3.1 各种方式调用方法 3.1.1 调用方法 3.1.2 获取参数列表 3.1.3 获取重载方法 [......] 继续阅读

2020年1月11日 1条评论 4342点热度 0人点赞 痴者工良 阅读全文

A to B, C await (from e in _context.Equip join c in _context.Ycp on e.EquipNo equals c.EquipNo into j1 join x in _context.Yxp on e.EquipNo equals x.EquipNo into j2 select[......]继续阅读

2020年1月10日 2条评论 7710点热度 10人点赞 痴者工良 阅读全文

A对B、C await (from e in _context.Equip join c in _context.Ycp on e.EquipNo equals c.EquipNo into j1 join x in _context.Yxp on e.EquipNo equals x.EquipNo into j2 select new[......]继续阅读

2020年1月10日 2条评论 8132点热度 10人点赞 痴者工良 阅读全文
1373839404154