Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class Car {
- private int gearNo = 0;
- //for setting new value
- public void setGearNo(int setNum) {
- gearNo = setNum;
- }
- //for printing
- public int getGearNo() {
- return gearNo;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement