Skip to content

Latest commit

 

History

History
20 lines (17 loc) · 404 Bytes

checking_for_null.md

File metadata and controls

20 lines (17 loc) · 404 Bytes

Checking for null

If you are unsure whether something is null, you can check by using ==.

void sayHello(String firstName, String lastName) {
    if (lastName == null) {
        System.out.println("Hello " + firstName);
    }
    else {
        System.out.println("Hello " + firstName + " " + lastName);
    }
}

void main() {
    sayHello("Sonny", "Bono");
    sayHello("Cher", null);
}