JAVA foundation --- 2. Constant

Constant Category:

  • String constants: double quotes is a string constant, "abc", "Hello"
  • Integer constants: 100,200 ...
  • Float constant: 1.1, -3.14 ...
  • Character Constants: single quotes is character constant, 'A', 'medium' ...
  • Boolean constants: Only true, false
  • Empty constants: null (no data)

Guess you like

Origin www.cnblogs.com/deer-cen/p/12109355.html