首页 > 编程语言 >《计算机组成及汇编语言原理》阅读笔记:p200-p240

《计算机组成及汇编语言原理》阅读笔记:p200-p240

时间:2025-01-04 15:57:59浏览次数:7  
标签:p240 汇编语言 derived coherent p200 array type

《计算机组成及汇编语言原理》学习第 15 天,p200-p240 总结,总计 40 页。

一、技术总结

1.derived type

(1)定义

A representation for data built up by combining basic types. For example, a fraction type could be derived from two integers, the numerator and the denominator.

(2)示例

这里以 Java 语言为例,array 是一种 derived type。p201, One of the simplest and most common kinds of derived types is the array. From a theoretical and platform-independent perspective, an array is a collection of elements of identical type indexed by an integer.

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

1.envision

(1)envision: en-("make, put in") + vision("something seen in the imagination")

vt. to image sth to happen/to expect sth to happen (设想,期望)。

p204, However, the ability to support typed computations even when the types involved are user-defined is critical to the cross-platform security envisioned by the designers of the JVM.

2.coherent

(1)coherent: co-("together, with") + haerere("to adhere, stick")

adj. coherent originally referred to things that are connected or sticking together, and it now describes ideas or elements that are logically connected(有条理的,连贯的).

p210, In order to structure these objects into a coherent framework, they are usually grouped into (and written as) classes of similarly propertied objects.

3.taxonomy

(1)taxonomy: taxis("arrangement") + -nomy("method")

c/u. science of classification(分类学)。

三、其它

chapter 10 简评:介绍 JVM 上的编程:派生类型,类、对象、继承、class 文件。

完结,撒花。

四、参考资料

1. 编程

(1) Patrick Juola,《计算机组成及汇编语言原理》:https://book.douban.com/subject/3069889/

2. 英语

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

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

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

标签:p240,汇编语言,derived,coherent,p200,array,type
From: https://www.cnblogs.com/codists/p/18651983

相关文章

  • 《计算机组成及汇编语言原理》阅读笔记:p177-p177
    《计算机组成及汇编语言原理》学习第13天,p177-p177总结,总计1页。一、技术总结1.realmodeAprogrammingmodelwheretheprogramhasaccesstotheentirecapabilityofthemachine,bypassingsecurityandmemorymanagement.Usefulprimarilyforoperatingsys......
  • 第8章 汇编语言--- 循环结构
    汇编语言是一种低级编程语言,它几乎是一对一地映射到计算机的机器码指令。在汇编语言中实现循环结构通常涉及到使用条件跳转指令(如JMP、JE、JNE等)来控制程序流程。下面我将通过一个简单的例子来讲解如何用x86汇编语言实现一个循环结构。假设我们要编写一个程序,它会计算从1......
  • 《计算机组成及汇编语言原理》阅读笔记:p133-p159
    《计算机组成及汇编语言原理》学习第11天,p133-p159总结,总计27页。一、技术总结1.segment(1)定义Broadlyspeaking,acontiguoussectionofmemory.Morespecifically,asectionofmemoryreferencedbyoneofthesegmentregistersofthe80x86family.Theme......
  • 《计算机组成及汇编语言原理》阅读笔记:p128-p132
    《计算机组成及汇编语言原理》学习第10天,p128-p132总结,总计5页。一、技术总结1.8088organizationandarchitecture8088处理器是16位电脑,寄存器是16位,数据总线(databus)是8位,地址总线是20位。(1)general-purposeregister8088处理器(processor)包含的通用寄存器有......
  • 《计算机组成及汇编语言原理》阅读笔记:p121-p122
    《计算机组成及汇编语言原理》学习第8天,p121-p122总结,总计2页。一、技术总结1.memory优化(1)cachememoryremoveblankfrom"Mostcomputerssupporttwodifferentkinds(levels)ofcache:levelone(L1)cacheisbuiltintotheCPUchipitselfandrunsatCPU......
  • 汇编语言期末复习
    开始时间 2024-12-27 21:44:19结束时间 微处理器的结构和工作模式第二章8086CPU内部结构右总线接口单元(BIU)和指令执行单元(EU)两大部分组成。总线接口部件BIU是8086CPU与外部存储器及I/O端口之间交换数据的接口电路,它负责从内存指定单元中取出指令,送到6字节指令队列中......
  • 《计算机组成及汇编语言原理》阅读笔记:p116-p120
    《计算机组成及汇编语言原理》学习第7天,p116-p120总结,总计5页。一、技术总结1.CPU优化(1)increaseoverallperformancenumber例如:16位电脑提升到32位电脑。(2)multiprocessingOnewaytomakecomputersmoreusefulistoallowthemtorunmorethanoneprogram......
  • 003. 字符串的展开(牛客NOIP2007)
    003.字符串的展开(牛客NOIP2007)题目描述在初赛普及组的“阅读程序写结果”的问题中,我们曾给出一个字符串展开的例子:如果在输入的字符串中,含有类似于“d-h”或“4-8”的子串,我们就把它当作一种简写,输出时,用连续递增的字母或数字串替代其中的减号,即,将上面两个子串分别输出为“de......
  • 《计算机组成及汇编语言原理》阅读笔记:p86-p115
    《计算机组成及汇编语言原理》学习第6天,p86-p115总结,总计20页。一、技术总结1.ifstatement2.loop在许多编程语言中,有类种循环:一种是在程序开头检测条件(testthecondition),另一种是在程序末尾检测条件。3.Collatzconjecture(考拉兹猜想)对于每一个正整数,如果它是......
  • 《计算机组成及汇编语言原理》阅读笔记:p48-p81
    《计算机组成及汇编语言原理》学习第4天,p48-p81总结,总计34页。一、技术总结1.CISCvsRISCp49,complexinstructionsetcomputingForexample,acomplexinstructionsetcomputing(CISC)chipmaybeabletomovealargeblockofdata,perhapsastringconsist......