Java: Setters
Quick Summary
- setters refers to a technique for encapsulating a value so that users don’t set invalid data types or other incorrect data as a field value.
Eclipse example: getter_and_setter_methods
Classes have instance variables, but usually users don’t need to know which variables are available in the class. Instead, it’s more common to provide methods that allow users to set the value of the instance variables.
In other words, rather than doing something like this to set the value:
myObject.name = "Tom";
It’s more common to use a setter method as follows:
package setters;
public class SleepTime {
int timev;
int time;
public int setSleepTime(int timev) {
int time = timev;
return time;
}
public int getSleepTime() {
return time;
}
}
<div class="container overflow-hidden">
<div class="row inpostComics gy-4">
<h3>Sponsored content</h3>
<script>
var contents=new Array()
//Paligo
contents[0]='<div class="border col-md-4"><a class="noCrossRef" ref="nofollow" href="https://idbwrtng.com/paligoinline_apr24_2022"><img style="border: 1px solid darkgray" src="https://s3.us-west-1.wasabisys.com/idbwmedia.com/images/paligo_april.png" alt="Paligo" /></a><div class="comicLink"> <a href="https://idbwrtng.com/paligoinline_apr2_2023">Find out why Paligo is the choice for some of the world\'s leading brands.</a></div></div>'
//DevDocs
contents[1]='<div class="border col-md-4"><a class="noCrossRef" ref="nofollow" href="https://idbwrtng.com/devdocs"><img style="border: 1px solid darkgray" src="https://s3.us-west-1.wasabisys.com/idbwmedia.com/images/devdocs_square.jpg" alt="DevDocs: Your tech writing project partner" /></a><div class="comicLink"> <a href="https://idbwrtng.com/devdocs">DevDocs is your tech writing project partner for all your doc needs</a></div></div>'
//Acrolinx
contents[2]='<div class="border col-md-4"><a class="noCrossRef" ref="nofollow" href="https://idbwrtng.com/acrolinx_inline"><img style="border: 1px solid lightgray" src="https://s3.us-west-1.wasabisys.com/idbwmedia.com/images/acrolinx_square.png" alt="Acrolinx" /></a> <div class="comicLink"><a href="https://idbwrtng.com/acrolinx_inline">Acrolinx for technical communication: Communication at a new level</a></div></div>'
//Your ad here
contents[3]='<div class="border col-md-4"><a class="noCrossRef" ref="nofollow" href="https://idbwrtng.com/youradhereinline"><img style="border: 1px solid darkgray" src="https://s3.us-west-1.wasabisys.com/idbwmedia.com/images/youradhere2.png" alt="Advertising options for tech comm products" /></a><div class="comicLink"> <a href="https://idbwrtng.com/youradhereinline">Make your tech comm products visible to tech writers worldwide</a></div></div>'
//TWi
contents[4]='<div class="border col-md-4"><a class="noCrossRef" ref="nofollow" href="https://idbwrtng.com/twiinline_apr24_2022"><img style="border: 1px solid lightgray" src="https://s3.us-west-1.wasabisys.com/idbwmedia.com/images/technically_write_it.jpg" alt="TWi: Leading Provider of Documentation and Technical Communication Solutions" /></a> <div class="comicLink"><a href="https://idbwrtng.com/twiinline_apr24_2022">Which one are you, which one should you be, and why?</a></div></div>'
//Xeditor
contents[5]='<div class="border col-md-4"><a class="noCrossRef" ref="nofollow" href="https://idbwrtng.com/xpublisherinline_apr24_2022"><img style="border: 1px solid lightgray" src="https://s3.us-west-1.wasabisys.com/idbwmedia.com/images/xeditor2022.png" alt="Xeditor is a web-based & highly customizable XML editor for any CMS" /></a> <div class="comicLink"> <a href="https://idbwrtng.com/xpublisherinline_apr24_2022">Xeditor: a web-based & highly customizable XML editor for any CMS</a></div></div>'
var i=0
//variable used to contain controlled random number
var random
//while all of array elements haven't been cycled thru
while (i<contents.length){
//generate random num between 0 and arraylength-1
random=Math.floor(Math.random()*contents.length)
//if element hasn't been marked as "selected"
if (contents[random]!="selected"){
document.write(contents[random])
//mark element as selected
contents[random]="selected"
i++
}
}
</script>
</div>
</div>
<div style="clear:both;"></div>
and to set and retrieve them as follows:
package setters;
public class App {
public static void main(String[] args) {
SleepTime tomSleepTime = new SleepTime();
System.out.println(tomSleepTime.setSleepTime(11));
System.out.println(tomSleepTime.getSleepTime());
}
}
There’s a shortcut in Eclipse that makes it very easy to add getters and setters. Right click your class and select Source > Generate Getters and Setters. Here’s an example of what it produces:
public class Robot {
private int id;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
}
Here I had just entered private int id
. It automatically set the get and set methods for this value. It’s pretty common to set up getters and setters for field values of a class.
Note that the setter method uses this.id = id;
. That’s because you’ll create an object from the Robot class like this:
Robot myRobot = new Robot();
You would then set the value for the id like this:
myRobot.id = "some value";
To make it generic, you use this
instead. The word this
refers to whatever the object in scope is.
Encapsulation
Encapsulation means that an object holds its contents in such a way that other objects can’t see or change those contents (though we have a number of ways to provide access to the contents of a class). Java for Absolute Beginners