java programming Flashcards
Class body
public class classname {
public static void main(String[] args) {
System.out.println(“welcome to java”);
}
}
Type conversions
byte < short < int < long < float < double
float and double
float a = 22.5f;
double a = 22.5;
Type Casting
double myDobule = 3.6
int myInt = (int)myDouble; // = 3
Array declaration
int[] studentmarks = new int[6]; // holds 6
boolean[] attendance = new boolean[12]
attendance.length // gets length of array
Mult dimensional arrays
int[][] rating = new int[3][4]; // 3 rows, 4 columns
char[][] hellos = new char[2][];
hellos[0] = new char[]{‘H’, ‘e’, ‘l’, ‘l’, ‘o’};
hellos[1] = new char[]{‘H’, ‘i’};
if else statement shorthand
(condition) ? expression1 : expression2;
e.g
String result = (marks >=40) ? “Pass” : “Fail”;
for each loop
int[] numbers = new int[]{5,100,2000}
for(int number : numbers) {
System.out.println(number);
}
Methods
public static int Calculatemin(int num1, int num2){
return result
}