Field Access

You can access the value of any field on a class by writing the name of a variable holding an instance of that class, ., then the name of that field.

class Muppet {
    String name;
}

void main() {
    Muppet kermit = new Muppet();
    kermit.name = "Kermit The Frog";

    // The .name accesses the "name" field
    System.out.println(kermit.name);
}