🎓 Module 1: Java का परिचय और सेटअप
📘 Java Keywords Chart (With Categories)
🔹 Access Modifiers:
public
, private
, protected
🔹 Class/Method Definition:
class
, interface
, extends
, implements
, abstract
, final
, static
, native
, strictfp
, synchronized
🔹 Data Types & Literals:
int
, float
, double
, char
, boolean
, byte
, short
, long
, void
🔹 Control Statements:
if
, else
, switch
, case
, default
, while
, do
, for
, break
, continue
, return
🔹 Exception Handling:
try
, catch
, finally
, throw
, throws
🔹 Object-Oriented Keywords:
new
, this
, super
, instanceof
🔹 Variable Control:
transient
, volatile
, const
(reserved)
🔹 Loop Labels:
goto
(reserved but not used)
🔹 Miscellaneous:
import
, package
, assert
, enum
🔹 Reserved Literals:
null
, true
, false
नोट: Java में कुल 50 से ज़्यादा keywords होते हैं, जिनका उपयोग language structure बनाने में होता है। इनमें से कुछ keywords future use के लिए reserved होते हैं (जैसे goto
, const
)।
Comments