0% found this document useful (0 votes)
5 views

Java Def Ention S

Uploaded by

txicads144
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
5 views

Java Def Ention S

Uploaded by

txicads144
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

(write code)->(Compile code)->(Run compile code)

Java keywords:

abstract double instanceof static while

assert else int strictfp

boolean enum interface super

break extends long switch

byte false native synchronized

case final new this

catch finally null throw

char float package throws

class for private transient

const goto protected true

continue if public try

default implements return void

do import short volatile


--------------------------------------------------------

Java keywords are case senstive this means they all use lower case letters
and if you substitute a single captail letter it will not be the key word
anymore java is a case sensitive language.

For example Boolean is not boolean.

True,false,null.Are not really keywords.They're what's called literal values.


For example, "23" is a literal number."true" is a literial Boolean value.

You might also like