10.12.2012 Views

The Java Language Specification, Third Edition

The Java Language Specification, Third Edition

The Java Language Specification, Third Edition

SHOW MORE
SHOW LESS

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

LEXICAL STRUCTURE Literals 3.10<br />

3.9 Keywords<br />

<strong>The</strong> following character sequences, formed from ASCII letters, are reserved for<br />

use as keywords and cannot be used as identifiers (§3.8):<br />

Keyword: one of<br />

abstract continue for new switch<br />

assert default if package synchronized<br />

boolean do goto private this<br />

break double implements protected throw<br />

byte else import public throws<br />

case enum instanceof return transient<br />

catch extends int short try<br />

char final interface static void<br />

class finally long strictfp volatile<br />

const float native super while<br />

<strong>The</strong> keywords const and goto are reserved, even though they are not currently<br />

used. This may allow a <strong>Java</strong> compiler to produce better error messages if<br />

these C++ keywords incorrectly appear in programs.<br />

While true and false might appear to be keywords, they are technically<br />

Boolean literals (§3.10.3). Similarly, while null might appear to be a keyword, it<br />

is technically the null literal (§3.10.7).<br />

3.10 Literals<br />

A literal is the source code representation of a value of a primitive type (§4.2), the<br />

String type (§4.3.3), or the null type (§4.1):<br />

Literal:<br />

IntegerLiteral<br />

FloatingPointLiteral<br />

BooleanLiteral<br />

CharacterLiteral<br />

StringLiteral<br />

NullLiteral<br />

DRAFT<br />

21

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!