Created
October 24, 2020 10:27
-
-
Save SiAust/b17ab26d680fae65689240eb47b132ed to your computer and use it in GitHub Desktop.
Example builder pattern in static class.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.Scanner; | |
class Robot { | |
private String CPU; | |
private int legs; | |
private int hands; | |
private int eyes; | |
Robot(String CPU, int legs, int hands, int eyes) { | |
this.CPU = CPU; | |
this.legs = legs; | |
this.hands = hands; | |
this.eyes = eyes; | |
} | |
public static class RobotBuilder { | |
/* write your code here (fields) */ | |
private String cpu; | |
private int legs; | |
private int hands; | |
private int eyes; | |
/* write your code here (constructor) */ | |
public RobotBuilder() {} | |
RobotBuilder setCPU(String cpu) { | |
/* write your code here */ | |
this.cpu = cpu; | |
return this; | |
} | |
RobotBuilder setLegs(int legs) { | |
/* write your code here */ | |
this.legs = legs; | |
return this; | |
} | |
RobotBuilder setHands(int hands) { | |
/* write your code here */ | |
this.hands = hands; | |
return this; | |
} | |
RobotBuilder setEyes(int eyes) { | |
/* write your code here */ | |
this.eyes = eyes; | |
return this; | |
} | |
Robot build() { | |
/* write your code here */ | |
return new Robot(cpu, legs, hands, eyes); | |
} | |
} | |
@Override | |
public String toString() { | |
return "CPU : " + CPU + "\n" + | |
"Legs : " + legs + "\n" + | |
"Hands : " + hands + "\n" + | |
"Eyes : " + eyes + "\n"; | |
} | |
} | |
class TestDrive { | |
public static void main(String[] args) { | |
final Scanner scanner = new Scanner(System.in); | |
final Robot.RobotBuilder robotBuilder = /* write your code here */ new Robot.RobotBuilder(); | |
/* Set CPU */ | |
robotBuilder.setCPU("Intel Core i5"); | |
/* Would like to set legs? */ | |
int legs = scanner.nextInt(); | |
/* Would like to set hands? */ | |
int hands = scanner.nextInt(); | |
/* Would like to set eyes? */ | |
int eyes = scanner.nextInt(); | |
robotBuilder.setLegs(legs); | |
robotBuilder.setHands(hands); | |
robotBuilder.setEyes(eyes); | |
Robot robot = robotBuilder.build(); | |
System.out.println(robot); | |
scanner.close(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment