All about Built-inTypes
Posted dapanshe
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了All about Built-inTypes相关的知识,希望对你有一定的参考价值。
1,Every identifier in a Java program has a type associated with it.
当你使用任何variable的时候,第一件事情是告诉你可爱的编译器它到底是是个什么类型!!!
2,AP Java 考到的类型包括 (primitive type)
int An integer. For example 3, 0, -34
double A double precision floating-point number. For example 0.456, -456.553
boolean A boolean. Just two values, true or false(注意大小写,‘t‘ 和 ‘f‘ 都是小写)
一些不考的类型 (primitive type)
byte,short,long,float,char
如果想看更加详细的官方定义 请点击
3,int数据最大能表示的整数位231-1,最小的整数位-231
4,double并不能表示所有小数,具体的小数表示方式请点击。我们要记住的一句话是官方文档中的描述
this data type should never be used for precise values, such as currency
这也就就涉及到一个非常重要的考点:double类型数据不能用 “==” 来比较大小
以上是关于All about Built-inTypes的主要内容,如果未能解决你的问题,请参考以下文章
markdown [All About Shell]关于shell的信息#shell #bash #sh
css 来自https://css-tricks.com/all-about-floats/
IO的详细解释:It's all about buffers: zero-copy, mmap and Java NIO