Latest News

 










Template Method Example (2/7)

Previous slide Next slide Back to first slide View graphic version


Template Method Example (2/7)


 
My other sites

Latest News

 










Template Method Example (2/7)

    abstract public String getCompilationCommand(String program);


    public void compile() {

    for (int i=0; i< myFiles.length; i++) {

    String compilationCommand = getCommand(myFiles[i]);

    System.out.println(compilationCommand);

    // now compile

    }

    }

    private String getCommand(String program) {

    return getCompilationCommand(program);

    }

    }

Previous slide Next slide Back to first slide View graphic version