1700456028
1700456029
在Wizard类中增加一个installWizard方法,对安装过程进行封装,同时把原有的三个public方法修改为private方法,如代码清单5-11所示。
1700456030
1700456031
代码清单5-11 修改后的导向类实现过程
1700456032
1700456033
public class Wizard{
1700456034
1700456035
private Random rand=new Random(System.currentTimeMillis());
1700456036
1700456037
//第一步
1700456038
1700456039
private int first(){
1700456040
1700456041
System.out.println(“执行第一个方法……”);
1700456042
1700456043
return rand.nextInt(100);
1700456044
1700456045
}
1700456046
1700456047
//第二步
1700456048
1700456049
private int second(){
1700456050
1700456051
System.out.println(“执行第二个方法……”);
1700456052
1700456053
return rand.nextInt(100);
1700456054
1700456055
}
1700456056
1700456057
//第三个方法
1700456058
1700456059
private int third(){
1700456060
1700456061
System.out.println(“执行第三个方法……”);
1700456062
1700456063
return rand.nextInt(100);
1700456064
1700456065
}
1700456066
1700456067
//软件安装过程
1700456068
1700456069
public void installWizard(){
1700456070
1700456071
int first=this.first();
1700456072
1700456073
//根据first返回的结果,看是否需要执行second
1700456074
1700456075
if(first>50){
1700456076
1700456077
int second=this.second();
[
上一页 ]
[ :1.700456028e+09 ]
[
下一页 ]