100% found this document useful (1 vote)
185 views14 pages

Java Programming Cheatsheet

This document is a 14-part cheat sheet on Java programming. It covers basic concepts like data types, variables, operators, conditionals and loops. It also discusses more advanced topics such as classes, objects, methods, arrays, strings and built-in math functions. The cheat sheet provides an overview of key elements in Java like syntax, APIs and best practices for writing Java code.

Uploaded by

Kotsev
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
Download as pdf or txt
100% found this document useful (1 vote)
185 views14 pages

Java Programming Cheatsheet

This document is a 14-part cheat sheet on Java programming. It covers basic concepts like data types, variables, operators, conditionals and loops. It also discusses more advanced topics such as classes, objects, methods, arrays, strings and built-in math functions. The cheat sheet provides an overview of key elements in Java like syntax, APIs and best practices for writing Java code.

Uploaded by

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

java programming cheatsheet #1 

 
Hello, World. 

 
 
Editing, compiling, and executing. 

 
 
Built-in data types. 

 
 
Declaration and assignment statements. 

 
java programming cheatsheet #2 
 
Integers. 

 
 
Floating-point numbers. 

 
 
   
java programming cheatsheet #3 
Booleans. 

 
Comparison operators. 

 
 
Printing. 

 
 
Parsing command-line arguments. 

 
 
   
java programming cheatsheet #4 
Math library. 

 
The full ​java.lang.Math API​. 
 
Java library calls. 

 
 
   
java programming cheatsheet #5 
Type conversion. 

 
 
Anatomy of an if statement. 

 
 
If and if-else statements. 

 
java programming cheatsheet #6 
 
Nested if-else statement. 

 
 
Anatomy of a while loop. 

 
 
Anatomy of a for loop. 

 
 
   
java programming cheatsheet #7 
Loops. 

 
 
Break statement. 

 
 
Do-while loop. 

 
 
   
java programming cheatsheet #8 
Switch statement. 

 
 
Arrays. 

 
Inline array initialization. 

 
Typical array-processing code. 

 
java programming cheatsheet #9 
Two-dimensional arrays. 

 
Inline initialization. 

 
 
   
java programming cheatsheet #10 
Functions. 

 
 
   
java programming cheatsheet #11 
Using an object. 

 
 
Instance variables. 

 
 
Constructors. 

 
 
   
java programming cheatsheet #12 
Instance methods. 

 
 
Classes. 

 
 
java programming cheatsheet #13 
Java's String data type. 

 
The full ​java.lang.String API​. 

 
 
   
java programming cheatsheet #14 
Iterable. 

 
 

You might also like