2019年7月28日
摘要: You can place any expression after a dollar sign ($) in a processed string literal. For single-variable expressions, you can often just place the vari 阅读全文
posted @ 2019-07-28 10:25 25th_engineer 阅读(174) 评论(0) 推荐(0)
  2019年7月27日
摘要: Scala provides two other string interpolators by default: raw and f. The raw string interpolator behaves like s, except it does not recognize characte 阅读全文
posted @ 2019-07-27 17:25 25th_engineer 阅读(196) 评论(0) 推荐(0)
摘要: Scala does not support octal literals; integer literals that start with a 0, such as 031, do not compile. If an integer literal ends in an L or l, it 阅读全文
posted @ 2019-07-27 17:16 25th_engineer 阅读(225) 评论(0) 推荐(0)
摘要: [1] The reason parameters are vals is that vals are easier to reason about. You needn't look further to determine if a val is reassigned, as you must 阅读全文
posted @ 2019-07-27 16:06 25th_engineer 阅读(179) 评论(0) 推荐(0)
摘要: This(scalac) compiles your source files, but there may be a perceptible delay before the compilation finishes. The reason is that every time the compi 阅读全文
posted @ 2019-07-27 15:50 25th_engineer 阅读(199) 评论(0) 推荐(0)
摘要: One difference between classes and singleton objects is that singleton objects cannot take parameters,whereas classes can. Because you can't instantia 阅读全文
posted @ 2019-07-27 15:35 25th_engineer 阅读(241) 评论(0) 推荐(0)
  2019年5月6日
摘要: 某垃圾大学数据结构课设(题目抄袭自某牛逼985高校)。 github项目地址(含报告等):https://github.com/25thengineer/Data-Structure-Course-Design-Practice-of-Binary-Image-Digital-Watermarkin 阅读全文
posted @ 2019-05-06 10:46 25th_engineer 阅读(1024) 评论(1) 推荐(1)
  2019年5月4日
摘要: 实验三 中断和子程序设计 1. 实验目的 (1)掌握子程序、宏和中断程序的设计方法; (2)熟悉在PC机上建立、汇编、连接、调试和运行8086/8088汇编语言程序的过程。 2. 实验内容 (1)编写一个子程序计算z=f(x,y)=x/y+x-y(x,y,z有符号数内存字数)。要求通过堆栈传送输入参 阅读全文
posted @ 2019-05-04 21:10 25th_engineer 阅读(1532) 评论(0) 推荐(0)
摘要: 实验二 汇编语言程序设计(顺序、多分支、循环) 一. 实验目的 1、掌握顺序和循环程序结构和设计方法; 2、熟悉在PC机上建立、汇编、连接、调试和运行8086/8088汇编语言程序的过程。 二. 实验内容 1、X、Y、Z、V均为字变量,在X、Y、Z、V字单元中存放是16位带符号数。试编写汇编语言程序 阅读全文
posted @ 2019-05-04 20:38 25th_engineer 阅读(1332) 评论(0) 推荐(0)
  2019年5月2日
摘要: https://blog.csdn.net/u25th_engineer/article/details/89740054 阅读全文
posted @ 2019-05-02 22:14 25th_engineer 阅读(1062) 评论(0) 推荐(0)