提交 2e07a685 编写于 作者: I Ilkka Seppala

Comments for template method example.

上级 94b28980
package com.iluwatar;
/**
*
* Template Method (StealingMethod) defines skeleton for the
* algorithm and subclasses (HitAndRunMethod, SubtleMethod)
* fill in the blanks.
*
*/
public class App
{
public static void main( String[] args )
......
package com.iluwatar;
/**
*
* Halfling thief uses StealingMethod to steal.
*
*/
public class HalflingThief {
private StealingMethod method;
......
package com.iluwatar;
/**
*
* Template Method base class.
*
*/
public abstract class StealingMethod {
protected abstract String pickTarget();
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册