
Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
Community
Ask the community for help and clear up your study doubts
Discover the best universities in your country according to Docsity users
Free resources
Download our free guides on studying techniques, anxiety management strategies, and thesis advice from Docsity tutors
Cheat sheet on Java Syntax: basic definitions, primitive data types, comments, elements, operators and separators.
Typology: Cheat Sheet
1 / 1
This page cannot be seen from the preview
Don't miss anything!
Class Describes a particular kind of object. It can contain related methods and variables. Method A function defined in a class. Methods implement the behavior for objects. Object The principal building blocks of Java. Objects consist of variables (data) and methods (functionality).
HTML Comments
Sent to the client in the viewable page source. **JSP Commens (Not Sent to Client)** <%-- comment --%>Comments in JSP file.
// comment Comment in scriplet part of JSP file.
Declaration <%! declaration %> Creates a global variable or method. Expression <%= expression %> Statements evaluated on the server before the page is outputted to the client. Page Directive <%@ directive %> Attributes that apply to the entire page. Scriplet <% code fragment of one or more lines %>
Contains a block of scripting code which is executed when the page is generated. Taglib Directive <%@ taglib uri="URIToTagLibrary" prefix="tagPrefix" %>
Defines a tag library and prefix for tags used in a JSP page.
( ) Used to surround parameters { } Defines a block of code for a class or method or to contain the values of automatically initialized arrays [ ] Declares arrays or references array values ; Denotes the end of a statement , Separates variables
. Separates package names from subpackages/ classes or a variable/method from a reference variable
Type Description Bits (Integers) byte Byte-length integer 8 short Short integer 16 int Integer 32 long Long integer 64 (Real Numbers) float Single-precision floating point 32 double Double-precision floating point 64 (Other) char A single character 16 boolean A boolean value (true or false) 1
greater than = greater than or equal to < less than <= less than or equal to ! boolean NOT != not equal to && boolean AND || boolean OR == boolean equals = assignment
If Else Switch Case
While Do For
Throw Try Catch Finally
Return Break Continue Label
abstract assert boolean break byte case catch char class const continue default do double else enum extends false final finally float for goto if implements import instanceof int interface long native new null package private protected public return short static strictfp super switch synchronized this throw throws transient true try void volatile while