#jls-1# 保留字,整数和浮点数

鉴于基础不牢固,之前教程选得不好。我换了官网上最新的入门教程,除了内容有点多,其他都很好。

The Java Language Specification-java10 se

3.9 Keywords

  1. 保留关键字 reserved keywords

Keyword:
(one of)
abstract continue for new switch
assert default if package synchronized
boolean do goto private this
break double implements protected throw
byte else import public throws
case enum instanceof return transient
catch extends int short try
char final interface static void
class finally long strictfp volatile
const float native super while
_ (underscore)

  1. not keywords

除了提到了保留关键字外,以下的是识别码。
A variety of character sequences are sometimes assumed, incorrectly, to be keywords:
true and false are not keywords, but rather boolean literals (§3.10.3).
null is not a keyword, but rather the null literal (§3.10.7).
var is not a keyword, but rather an identifier with special meaning as the type of a local
variable declaration (§14.4, §14.14.1, §14.14.2, §14.20.3).

  1. 限制性关键词 restricted keywords

open, module,
requires, transitive, exports, opens, to, uses, provides, and with

4. Types, Values, and Variables

Java编程语言是一种静态类型语言,意思是每个变量和每个表达式都有一个在编译时已知的类型。Java编程语言也是一种强类型语言,因为类型限制变量(§4.12)可以容纳的值或表达式可以产生的值,限制这些值支持的操作,并确定其含义操作。强静态类型有助于在编译时检测错误。

4.2.2 Integer Operations

其实不用记,不同类型包含的大小都是可以查的,记得关键字和tab就好了。以下是jshell的一段溢出错误代码:

//Example 4.2.2-1. Integer Operations

jshell> int i = 1000000;
i ==> 1000000

jshell> i*i
$18 ==> -727379968      //wrong output

//why, check max value
jshell> Integer.MAX_VALUE
$23 ==> 2147483647
jshell> long longi = i
longi ==> 1000000

jshell> longi * longi
$20 ==> 1000000000000     //correct output 

//why, check max value 

jshell> Long.MAX_VALUE
$24 ==> 9223372036854775807
//cannnot divide zero example 
jshell> 55555/(longi - i)
|  java.lang.ArithmeticException thrown: / by zero
|        at (#28:1)

4.2.3 Floating-Point Types, Formats, and Values

a. 特殊值

  1. 普遍:非零数
  2. 五个特数值: NaN值,正零positive zero,负零negative zero,正无穷大positive infinity和负无穷大negative infinity。
  3. 有序排列:除NaN外,浮点值是有序的;排列从最小到最大的是:负无穷大,负有限非零值,正零和负零,正有限非零值和正无穷大。
  4. 正负零:赋值时候零都是正零;但直接计算时分正零和负零,java设定的零值其实是极小数(而不是数学定义的绝对零值),所以会计算出无穷。
//Positive zero and negative zero compare equal;
jshell> float a = +0
a ==> 0.0

jshell> float b = -0
b ==> 0.0

//positive zero, negative comparison 
jshell>  +0.0 == -0.0
$1 ==> true

jshell>  +0.0 > -0.0
$2 ==> false

//zeros and Infinity values 
jshell> 1.0/0.0
$3 ==> Infinity

jshell> 1.0/-0.0
$4 ==> -Infinity
  1. NaN is unordered
    简单记,大部分布尔运算中含有NaN,返回false;只有!=中有NaN会返回true。
    • The numerical comparison operators <, <=, >, and >= return false if either or both operands are NaN (§15.20.1).In particular, (x<y) == !(x>=y) will be false if x or y is NaN.
    • The equality operator == returns false if either operand is NaN.
    • The inequality operator != returns true if either operand is NaN (§15.21.1).In particular, x!=x is true if and only if x is NaN.

4.2.4 Floating-Point Operations

  • 为什么会有不精确的结果?
    Inexact results must be rounded to the representable value nearest to the infinitely precise result; if the two nearest representable values are equally near, the one with its least significant bit zero is chosen. This is the IEEE 754 standard's default rounding mode known as round to nearest.

  • java中的零值实际是大约值
    The Java programming language uses round toward zero when converting a floating value to an integer (§5.1.3)

Example 4.2.4-1. Floating-point Operations

  1. 在java里,超过double就会被标记为“无穷”。
// An example of overflow:
jshell> Double.MAX_VALUE
$29 ==> 1.7976931348623157E308

jshell> double d = 1e308
d ==> 1.0E308

jshell> d*10
$31 ==> Infinity
  1. 小于一定值,就会被标记为0。发散想一下,大约就是为什么无穷个0相加等于1了。
// An example of gradual underflow:
void a() {
for (int i = 0; i < 4; i++)
System.out.print(" " + (d /= 100000)+"\n");}

jshell> d = Math.PI * 1e-305
d ==> 3.141592653589793E-305

jshell> a()
 3.1415926535898E-310
 3.141592653E-315
 3.142E-320
 0.0
  1. 其他比较神奇的输出。

0.0/0.0既不是抛出错误“0不可做除数”,也不是(当做自身相除)的1

// An example of NaN:
jshell> d = 0.0/0.0
d ==> NaN

理论上的数学公式, x / y * y = x;在计算上不一定成立。

// An example of inexact results and rounding:
void b(){
for (int i = 0; i < 100; i++) {
float z = 1.0f / i;
if (z * i != 1.0f)
System.out.print(" " + i);}
}

jshell> b()
 0 41 47 55 61 82 83 94 97

jshell> float z = 1.0f
z ==> 1.0

jshell> z/41 * 41
$56 ==> 0.99999994

jshell> z/47 * 47
$57 ==> 0.99999994
  1. 取整是向着零点取整
// An example of the cast to integer rounding:

jshell> d = 12345.6
d ==> 12345.6

jshell> (int) d
$64 ==> 12345

jshell> (int) (-d)
$65 ==> -12345

学习进度
The Java Language Specification-java10 se
P 0 - P 68

2018.7.5

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,928评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,192评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,468评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,186评论 1 286
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,295评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,374评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,403评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,186评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,610评论 1 306
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,906评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,075评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,755评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,393评论 3 320
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,079评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,313评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,934评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,963评论 2 351

推荐阅读更多精彩内容

  • pyspark.sql模块 模块上下文 Spark SQL和DataFrames的重要类: pyspark.sql...
    mpro阅读 9,449评论 0 13
  • rljs by sennchi Timeline of History Part One The Cognitiv...
    sennchi阅读 7,319评论 0 10
  • Lua 5.1 参考手册 by Roberto Ierusalimschy, Luiz Henrique de F...
    苏黎九歌阅读 13,776评论 0 38
  • 一、少年不知愁滋味 4. 可我知,我深知,那人他永远不会来 我拉着董凌走到河边,这个季节,水涨起来,刚刚没过岸边的...
    Scarlett_Ch阅读 648评论 0 2
  • 人的一生会路过很多人,认识很多人,又错过很多人,但是不会爱上很多人;我一直坚信,无论哪种爱情,来了,就不应该随便说放手…
    凡豆琪阅读 193评论 0 0