上一页 1 2 3 4 5 6 7 8 ··· 14 下一页
摘要: A pointer is a general concept for a variable contains an address in memory. Smart pointers are data structures that not only act like a pointer but a 阅读全文
posted @ 2021-02-13 14:58 kaleidopink 阅读(98) 评论(0) 推荐(0) 编辑
摘要: Hash Tables The hash table is a main memory data structure, in such a structure there is a hash function that takes a search key as an argument and co 阅读全文
posted @ 2021-02-08 01:11 kaleidopink 阅读(76) 评论(0) 推荐(0) 编辑
摘要: How to Write Tests Tests are functions that verify that the non test code is functioning in the expected manner. The bodies of test functions typicall 阅读全文
posted @ 2021-02-02 21:21 kaleidopink 阅读(126) 评论(0) 推荐(0) 编辑
摘要: An index is any data structure that takes the value of one or more fields and finds the records with that value quickly. Basics Indexes can be "dense" 阅读全文
posted @ 2021-01-31 23:47 kaleidopink 阅读(109) 评论(0) 推荐(0) 编辑
摘要: In Rust, generics is a tool for establishing abstract stand ins for concrete types or other properties. When we're writing code, we can express the be 阅读全文
posted @ 2021-01-29 00:12 kaleidopink 阅读(150) 评论(0) 推荐(0) 编辑
摘要: Reference and Borrowing In Rust, we use sign to refer a variable, so as in C++. Reference can be used as a constant parameter passed to functions, whi 阅读全文
posted @ 2021-01-28 16:08 kaleidopink 阅读(246) 评论(0) 推荐(0) 编辑
摘要: Error handling requires you to acknowledge the possibility of an error and take some action before your code crashes. This requirement makes your prog 阅读全文
posted @ 2021-01-27 16:25 kaleidopink 阅读(155) 评论(0) 推荐(0) 编辑
摘要: Storing Lists of Values with Vectors Vector The first collection type we'll look at is , as known as a Vector . Vector allows you to store more than o 阅读全文
posted @ 2021-01-26 09:48 kaleidopink 阅读(132) 评论(0) 推荐(0) 编辑
摘要: Packages and Crates A crate is a binary or library. The crate root is a source file that the Rust Compiler starts from and makes up the root module of 阅读全文
posted @ 2021-01-24 15:00 kaleidopink 阅读(119) 评论(0) 推荐(0) 编辑
摘要: 自动控制原理 1. 自动控制的一般概念 反馈系统的基本组成 测量元件 给定元件 比较元件 放大元件 执行元件 校正元件 自动控制系统的基本控制方式 反馈控制方式 无论什么原因使被控量偏离期望值而出现偏差时,必定会产生一个相应的控制作用去降低或消除这个偏差。 开环控制方式 特点是控制装置与被控对象之间 阅读全文
posted @ 2021-01-18 22:06 kaleidopink 阅读(6245) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 14 下一页