- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
因此,当我尝试创建一个类时遇到了一些问题,该类可以附加具有不同功能的子类并共享一个共同的祖先,而无需真正的大层次结构树。
我想做的是创建Skill
接口(interface)的n
个不同的子类,这些子类在列表中分配,然后调用执行。 Skill
中的所有内容都是 Event
的子类(此处不是)。
我的问题在于 SkillManager
中,我不知道如何区分它应该调用哪个 Skill
以及创建 Skill 是否会更有效
子类化并立即执行它。
这是我的 Skill.class 界面
public abstract class Skill
{
/**
* Private shortcut so this code doesn't have to be reused over and over to call
* for cooldowns on the skills
* @param dp player making the request
* @return if the command is available for use
*/
protected boolean canUse(DPlayer dp){
String name = "skill_"+getName();
if(!dp.getTag(name).isPresent())
return false;
if(dp.getTag(name).get().getRemaining() > 0) {
dp.sendActionBarCooldown(ChatColor.AQUA + getName(), dp.getTag(name).get().getRemaining());
return false;
}
return true;
}
/**
* Returns the name of this skills, this should also be the same
* name of the class implementing this interface for initialization
* propouses
* @return name of skills
*/
public abstract String getName();
/**
* Executor to be implemented and replace/add functionality
*/
public abstract void execute();
}
这是我的 SkillManager.class
public class SkillManager
{
private static final SkillManager instance = new SkillManager();
private final List<Skill> SKILLS =new ArrayList<>();
private SkillManager(){}
public static SkillManager get(){return instance;}
public void registerSkill(Skill s){
SKILLS.add(s);
}
public void registerSkills(Skill... s){
for(Skill skill : s){
SKILLS.add(skill);
}
}
public void unregisterSkill(String name){
for(Skill skill : SKILLS){
if(skill.getName().equalsIgnoreCase(name)){
SKILLS.remove(skill);
}
}
}
public void callEvent(Skill skill) {
skill.execute();
}
}
这是 Sneak.class 的示例实现
public class Sneak extends Skill {
@Override
public String getName() {
return "Sneak";
}
@Override
public void onSneak(DPlayer dp, PlayerToggleSneakEvent event){
if(dp.getTag("skills_sneak").isPresent()){
//DO STUFF
}
}
}
感谢您的帮助。编辑:Event
对象源自 api 调用,而不是源 self 的实现,并且包含有关所述事件的数据编辑2:添加流程图。红色是我编码的部分。蓝色是我正在使用的结构的一部分
最佳答案
您的 OOP 代码中有两个主要问题:
callEvent
并不依赖于所有事件实现的唯一抽象方法,这迫使您检查对象类型以调用正确的方法。使用命令设计模式;无需使用 onSneak()
、onBreak()
等,只需使用常见的 execute()
方法即可。在您的Skill.class
中,将execute 声明为抽象方法,迫使您在所有扩展中编写其实现。它将用于触发事件。 callEvent()
现在只需要一行代码:event.execute(dp);
。
您不应将事件作为参数发送给自身,因为作为实例,它可以保存自己的属性并且已经了解自己。
PS:您在问题中称之为优化,但这并不是真正的优化。修复架构很难让你的代码变得更快。另一方面,它将使其更易于阅读、维护且更可靠。 谨防过早的代码优化。
关于java - 用于调用重写特定方法的特定类的设计模式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43335660/
我习惯于使用 Apache 服务器,所以当启用 mod_rewrite 时,我可以创建一个 htaccess 文件并使用 URL 重写。 这是我的 htaccess 文件: RewriteEngine
我正在尝试编写一个 mixin 来修改输出的父选择器。这个想法是,在调用 mixin 的情况下,父选择器需要对其进行字符串替换。我有大部分工作,但我不知道如何吞下 & . .test { @inc
我有一个本地目录(上传)和一个 S3 桶设置。 当用户上传图片时,文件存储在本地目录:/uploads/member_id/image_name30 分钟后,系统将文件上传到 S3 使用相同的路径:s
我正在尝试使用以下内容重写代理页面的正文链接: sub_filter http://proxied.page.come http://local.page.com; sub_filte
关闭。这个问题需要更多focused .它目前不接受答案。 想改善这个问题吗?更新问题,使其仅关注一个问题 editing this post . 1年前关闭。 Improve this questi
我尝试在我的 JSF 应用程序中使用“重写”(http://ocpsoft.org/rewrite/)。 一切都很好,我已经创建了规则: .addRule(Join.path("/profile/{p
我可以在 AEM 中大致看到两种 URL 重写方法: /etc/map/http(s)下的Sling映射(sling:Mapping) 使用链接重写器/TransformerFactory 重写 UR
我有一个 onclick 函数,我想将 anchor 添加到 href 值。我不想更改 URL,因为我需要该网站仍然可以为没有 javascript 的人/出于 SEO 目的而运行。所以这是我尝试使用
我必须在 UILabel 中显示货币和价格。在一个标签中,但使用不同的字体大小。现在看起来像这样: ...我这样做是重写drawTextInRect:,如下所示: - (void)drawTextIn
我正在尝试使用以下内容进行重定向: RewriteRule ^reviews/area/Santa-Barbara%2F$"/reviews/area/santa-barbara" [R=301,NC
我使用 FOSUserBundle 并且我想覆盖他的 registerAction Controller 。我阅读了与覆盖 FOSUserBundle Controller 相关的文档,但它不起作用。
我正在尝试让 URL 重写在我的网站上运行。这是我的 .htaccess 的内容: RewriteEngine On RewriteRule ^blog/?$ index.php?page=blog
好吧,这让我发疯了......我正在尝试像这样重写我的网址: Now: http://www.somedomain.com/Somepage.aspx http://www.somedomain.co
final方法不能在子类中重写。但凭借 Scala 的魔力,这似乎是可能的。 考虑以下示例: trait Test { final def doIt(s: String): String = s
我有一个类似下面的查询: Select ser.key From dbo.Enrlmt ser Where ser.wd >= @FromDate AND ser.wd ser.wd
我是 nginx 的新手,只是想做一些我认为应该很简单的事情。如果我这样做:- curl http://localhost:8008/12345678 我希望返回 index.html 页面。但是我得
我们的一位客户创建了一个二维码,其中 url 中包含一个空格。 我将如何编写处理此问题的 nginx 重定向? 在字符串中使用诸如“%20”之类的东西的几次尝试似乎会导致 nginx 出错或使 con
我正在尝试覆盖 appendChild 方法,以便我可以控制动态创建的元素并在插入页面之前根据需要修改它们。我尝试了这个示例代码,只是为了看看它是否可以完成: var f = Element.prot
我目前正在使用以下功能,当用户单击某处以确定是否隐藏下拉菜单(在 react 中)。一切正常,但当我单击正文时,它会记录以下内容。 我尝试重写它几次,但我找不到解决这个问题的方法。 Uncaught
我正在开发一个 Spring Integration/Boot 应用程序。我使用多文档 application.yml (src/main/resources/application.yml) 来设置
我是一名优秀的程序员,十分优秀!