🪴 Aradinka Digital Garden

Search

Search IconIcon to open search

lean-java

Last updated Mar 6, 2023


# dtypes

primitive dtypes: int, double, float, boolean

integer:

decimal:

booleans:

characters:


# operator

1
2
int number = 4;
number++ // equal to number += 1 or number = number + 1

# string

1
2
3
String name = "Azka Purba"; // literal string

String name = new String("Azka Purba"); // object string

usecase:

# Formatted String

1
2
3
4
5
6
7
8
String name = "Azka";
int age = 22;
String formattedString = String.format(
	"My Name is %s, Im %d years old", // %f for double, %b for boolean
	name, 
	age
);
System.out.println(formattedString)

# Array

Arrays in java is reference type

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
char vowels[] = new char[5]; // create new array containing char with the length of 5

// or
char vowels[] = {'a', 'i', 'u', 'e', 'o'};

Array.toString(vowels);
Array.sort(vowels);

char key = 'o';
int foundItemIndex = Arrays.binarySearch(vowels, key);


// other
Arrays.fill(vowels, "x") // replace all elements with "x"
char copyOfVowels[] = Arrays.copyOf(vowels, vowels.length);

int startingIndex = 1;
int endingIndex = 4;
char copyOfVowels[] = Arrays.copyOfRange(vowels, startingIndex, endingIndex);

vowels == copyOfVowels // will return false because it's a different object
Arrays.equals(vowels, copyOfVowels) // to compare it's value

# Common Method

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
// string method
.length()
.isEmpty()
.toUpperCase()
.toLowerCase()
.replace()
.contains()

// comparing between String object
string1.equals(string2)