Member Selection or Dot Operator


A dot operator is used to refer members of a class using class name or object

Example: Customer customer = new Customer();

customer.customerName;

customer.showCustomerList();