devxlogo

Increase Code Reusability

Increase Code Reusability

Instead of exposing fields of a Java class, such as in thiscode:

 public class Person{   public String firstName;   public String lastName;}

use private fields and provide access to the information through”Getter” and “Setter” methods. The re-written class is:

 public class Person{   private String firstName;   private String lastName;   public String getFirstName()   {      return firstName;   }   public void setFirstName( String fistName )   {      this.firstName = firstName;   }   public String getLastName()   {      return lastName;   }   public void setLastName( String lastName )   {      this.lastName = lastName;   }}

There are two advantages to this. First, if you make changes to theclass that affect the way you store information, you can hide thechanges behind the getter and setting methods. Your class would stilllook the same to the users of the class as they would continue to usethe getter and setter methods. Second, getter and setter methods is thecoding pattern for JavaBeans. The re-written class is a JavaBean whilethe first one is not.

devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist