Java Keywords

Published: (December 13, 2025 at 01:10 AM EST)
1 min read
Source: Dev.to

Source: Dev.to

Java Keywords

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

Java Literals (Not keywords, but important)

  • true
  • false
  • null
Back to Blog

Related posts

Read more »

Java Variable

A variable in Java is a named memory location used to store data that can change during program execution. It can be thought of as: Variable = name + memory + v...