how do getters and setters work in java code example
Example 1: getters and setters javascript
let obj = {
log: ['a', 'b', 'c'],
get latest() {
if (this.log.length === 0) {
return undefined;
}
return this.log[this.log.length - 1];
}
};
obj.log.push('d');
console.log(obj.latest); //output: 'd'
Example 2: java setter
public setValue(value) {
this.value = value;
}
Example 3: java getter
public getValue() {
return value;
}