public class UserCommand {
public static class LoginCommand implements Command {
public String execute() {
//your implements
}
}
public static class LogoutCommand implements Command {
public String execute() {
//your implements
}
}
}
可以减少文件数量
[该贴被boyszz于2007年10月13日 16:13修改过]