示例: 判断字符串是否由字母数字下划线组成: using System; using System.Diagnostics; using System.Text.RegularExpressions; namespace ConsoleApp6 { class Program {[......]继续阅读

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

In C#, Parallel and Task.WhenAll are both used for parallel computing. Parallel is generally used only for CPU-bound operations. Refer to this link fo[......] 继续阅读

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

C# 中,Parallel 和 Task.WhenAll 都用于并行计算。 Parallel 一般只用于 CPU 集中的操作。 查看 https://www.cnblogs.com/scmail81/archive/2018/08/22/9521096.html 学习。 Task.WhenAll主要[......] 继续阅读

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

Computer System Architecture - Data Representation Table of Contents Computer System Architecture - Data Representation Data Representation Floating-[......] 继续阅读

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

计算机系统结构-数据表示 目录 计算机系统结构-数据表示 数据表示 浮点数 浮点数标准 例题 计算机系统结 数据表示:数据表示是指能由计算机硬件直接识别和引用的数据类型。(例如定点数浮点数) 表现在什么地方:表现在它有对这种数据类型进行操作的指令和功能部件。 数据结构种类:串,队,列,栈,阵列,[......] 继续阅读

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

K8S Installation Tutorial on Ubuntu [TOC] 1. Update System Sources If the system's default mirror address is located abroad, downloads may be slow. Yo[......] 继续阅读

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

在 Ubuntu 上安装 K8S教程 [TOC] 1,更新系统源 如果系统本身自带得镜像地址,服务器在国外,下载速度会很慢,可以打开 /etc/apt/sources.lis 替换为国内得镜像源。 apt upgrade 2,更新软件包 将系统得软件组件更新至最新稳定版本。 apt update 3[......] 继续阅读

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

Computer System Architecture: CPU Performance Formula Basic Knowledge CPU Time: The time a program runs on the CPU. (Excluding I/O time) Clock Frequen[......] 继续阅读

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

计算机系统结构:CPU性能公式 基础知识 CPU 时间:一个程序在 CPU 上运行的时间。(不包括I/O时间) 主频、时钟频率:CPU 内部主时钟的频率,表示1秒可以完成多少个周期。 例如,主频为 4.1GHz,表示每秒可以完成 4.1*109 个时钟周期。 时钟周期:时钟周期也称为振荡周期,定义为[......] 继续阅读

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

Computer System Architecture - Introduction Knowledge Points Hierarchical structure of computer systems Computer architecture, computer organization,[......] 继续阅读

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

计算机系统结构-概论 考察知识点 计算机系统的层次结构 计算机系统结构、计算机组成、计算机的实现 计算机的软硬件取舍及定量设计原理 软件、应用、器件的发展对系统结构的影响 系统结构中的并行性开发及计算机系统的分类 知识难度: 每个知识点使用 ※ 号标记掌握程度和类型。 ※:标识,能够记住知识点和[......] 继续阅读

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

ASP.NET Core Getting Started to Mastery - Resource Collection Navigation Table of Contents ASP.NET Core Getting Started to Mastery - Resource Collect[......] 继续阅读

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

[ASP.NET Core 从入门到精通-资源收集导航]() 目录 ASP.NET Core 从入门到精通-资源收集导航 学习路线 学习路线资源导航大全 1,介绍 2,入门 3,教程 4,基础知识 5,Razor页面 6,MVC 7,Web API 8,授权认证 9,安全性 10,测试、调试、API[......] 继续阅读

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

1. Hierarchical Structure of Computer Systems From a linguistic perspective, a computer is a combination of hardware and software, which can be organi[......] 继续阅读

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

1,计算机系统的层次结构 从语言角度来看,一台计算机是由软硬件组合成的,按照功能划分,可以形成多层机器级组成的层次结构。 不同层次的语言,可以使用翻译或解释技术来实现。例如 C# 语言是应用语言,在编译时会生成 IL 语言(高级语言),属于翻译(Translation 美 /trænzˈleɪʃ[......] 继续阅读

2020年2月2日 1条评论 5357点热度 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[......] 继续阅读

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

1,判断类型 判断是否某种类型 1.1 类和委托 1.1.1 判断是否类型或委托 1.1.2 判断是否泛型 1.1.3 泛型的参数名称和泛型限定 泛型约束 GenericParameterAttributes 枚举 泛型约束关系 1.1.4 是否委托 1.1.5 访问修饰符 1.1.6 密封类、[......] 继续阅读

2020年2月2日 2条评论 5949点热度 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[......] 继续阅读

2020年1月18日 1条评论 1723点热度 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 大小[......] 继续阅读

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

1. Assignment and Reading of Property Fields 2. Custom Attributes and Attribute Lookup 2.1 Specifications and Custom Attributes 2.1.1 Defining Attr[......] 继续阅读

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