Java Types
摘至The Java® Language Specification Java SE 11 Edition。

java编程语言类型。

其分为两类:1.primitive types和 2.reference types。
  primitive types分为boolean type和numeric types
  numeric types有integral typers(byte,short,int,long,char)和floating-point types(float,double)
  reference types有class types或interface types和array types(还有一个特殊的null type)。

  • primitive types
    • boolean type
    • numeric types
      • integral typers(byte,short,int,long,char)
      • floating-point types(float,double)
  • reference types
    • class types
    • interface types
    • array types

相关文章:

  • 2021-11-28
  • 2021-12-28
  • 2021-06-27
  • 2021-10-19
  • 2021-10-28
  • 2021-08-05
  • 2022-12-23
  • 2022-02-10
猜你喜欢
  • 2021-07-13
  • 2022-12-23
  • 2021-06-19
  • 2022-02-17
  • 2021-10-09
  • 2021-05-17
  • 2021-10-06
相关资源
相似解决方案