《Operating System Concepts》阅读笔记:p87-p94

news/2025/2/24 14:42:07

《Operating System Concepts》学习第 12 天,p87-p94 总结,总计 8 页。

一、技术总结

1.Android

The Android operating system was designed by the Open Handset Alliance (led primarily by Google) and was developed for Android smartphones and tablet computers.

二、英语总结(生词:6)

1.elaborate

(1)elaborate: e-(“out, away”) + labor(“work”)

vi. to explain sth that you have said(详细说明,详尽阐述)。

示例:This environment, also known as Darwin, includes the Mach microkernel and the BSD UNIX kernel. We will elaborate on Darwin shortly(《Operating System Concepts》第 88 页)。

2.forego

(1)forego: fore-(“before in time, rank, position”) + go(“go to”)

vt. Forego literally means “to go before/to precede”, and envolves to mean to give up or do without(放弃,在…之前)。

示例:Additionally, an application can forego frameworks entirely and communicate directly with the kernel environment(《Operating System Concepts》第 88 页)。

3.aggressive

(1)aggress: ag-(“toward”) + gress(“to step”)

vi/vt. step toward or go toward someone, often with the intent to attack(挑衅,攻击)。

(2)aggressive: aggress + -ive(word-forming element making adjectives from verbs)

adj. show anger and wiliingness to attack other people.

示例:Similarly, the iOS kernel has been modified somewhat to address specific features and needs of mobile systems, such as power management and aggressive memory management(《Operating System Concepts》第 88 页)。

在上面这个例子中, aggressive 是一种比喻用法(figurative usage), 意思是“proactive(主动的,积极的)”。

4.stringent

(1)stringent: string(to bind(捆绑) or draw tight(拉紧)) + -ent(word-forming element making adjectives, indicating a state or quality)

adj. Stringent describes something that is extremely limited(严格的)。

示例:Additionally, iOS has more stringent security settings than macOS(《Operating System Concepts》第 88 页)。

5.to name just a few

(1)说明

也写作 to name but a few, to mention but a few。used when you are mentioning only a small number of people or things as examples of a large group

(2)示例

This is a feature of languages such as Arabic, Spanish and Portuguese, to name but a few.

6.extreme

(1)extreme: extremus(outermost, utmost, farthest)

c. the larget degree of sth

(2)at one extreme

“At one extreme” means at the extreme point(在某种极端情况下)。

关于英语的注解同步更新汇总到 https://github.com/codists/English-In-CS-Books 仓库。

三、其它

英语中的比喻用户有时候挺不好理解的,感觉也没有好的解决办法,就是多看,看多了才能更好的理解。

四、参考资料

1. 编程

(1) Abraham Silberschatz,Peter Baer Galvin,Greg Gagne《Operating System Concepts》:https://book.douban.com/subject/30272539/

2. 英语

(1) Etymology Dictionary:https://www.etymonline.com

(2) Cambridge Dictionary:https://dictionary.cambridge.org

欢迎搜索及关注:编程人(a_codists)


http://www.niftyadmin.cn/n/5864477.html

相关文章

【Transformer架构】

目录 一、Transformer介绍 1.1 Transformer的诞生 1.2 什么是Transformer 1.3 Transformer的优势 1.4 Transformer的市场 二、Transformer架构 2.1 Transformer模型的作用 2.2 Transformer总体架构图 2.2.1 Transformer总体架构 2.2.2 输入部分 2.2.3 输出部分 2.2.…

二、Spring Framework基础:IoC(控制反转)和DI(依赖注入)

Spring Core:深入理解 IoC 和 DI 原理 在 Java 开发中,Spring Framework 是一个极为重要的框架,而 IoC(控制反转)和 DI(依赖注入)是 Spring 的核心特性。它们不仅帮助开发者简化代码的复杂性&a…

github配置sshkey

使用命令生成sshkey ssh-keygen -t rsa -b 4096 -C "your_emailexample.com" 依此会要求输入以下信息,可以使用默认值 设置保存密钥的路径 设置SSH密钥密码(备注:空内容表示不设置SSH密钥密码) 再次确认SSH密钥密…

Linux 命令大全完整版(14)

5. 文件管理命令 chgrp(change group) 功能说明&#xff1a;变更文件或目录的所属群组。语  法&#xff1a;chgrp [-cfhRv][–help][–version][所属群组][文件或目录…] 或 chgrp [-cfhRv][–help][–version][–reference<参考文件或目录>][文件或目录…]补充说明&…

stm32四种方式精密控制步进电机

在搭建完clion的开发环境后&#xff0c;我决定重写之前的项目并优化完善&#xff0c;争取做出完全可落地的东西&#xff0c;也结合要写的论文内容一同学习下去。 因此&#xff0c;首当其冲的就是回到步进电机控制领域&#xff0c;把之前使用中断溢出进行步进电机控制的方案进行…

图像处理篇---图像处理中常见参数

文章目录 前言一、分贝&#xff08;dB&#xff09;的原理1.公式 二、峰值信噪比&#xff08;PSNR, Peak Signal-to-Noise Ratio&#xff09;1.用途2.公式3.示例 三、信噪比&#xff08;SNR, Signal-to-Noise Ratio&#xff09;1.用途2.公式3.示例 四、动态范围&#xff08;Dyna…

如何清理cache-loader生成的缓存目录?

清理 cache-loader 生成的缓存目录可以帮助避免潜在的缓存问题和不必要的磁盘占用。以下是几种清理缓存的有效方法&#xff1a; 一、手动清理 1. 定位缓存目录 在 Webpack 配置中&#xff0c;你可以指定 cache-loader 的缓存目录。默认情况下&#xff0c;缓存目录可能位于项…

深入解析JVM垃圾回收机制

1 引言 本节常见面试题 如何判断对象是否死亡&#xff08;两种方法&#xff09;。简单的介绍一下强引用、软引用、弱引用、虚引用&#xff08;虚引用与软引用和弱引用的区别、使用软引用能带来的好处&#xff09;。如何判断一个常量是废弃常量如何判断一个类是无用的类垃圾收…