- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
好吧,由于服务器端响应配置不佳,我无法找到一种有效的方法来编写代码。
由于我试图传达的示例相当复杂,因此我将尝试使用现实生活中的示例来提供帮助。
假设我负责一项体育奖励计划,并且我正在尝试创建一个“顶级运动员页面”。该页面将显示三个运动类别中的顶尖男女运动员;棒球、篮球和橄榄球。与此不同的是,可能有一名男性获胜者而没有女性获胜者,反之亦然,或者根本没有获胜者。最重要的是,女性只能是棒球运动员或篮球运动员,而男性可以是这三者中的任何一个,或者既是篮球运动员又是足球运动员。棒球不能与其他任何事物结合在一起。最后,如果同时存在男性和女性玩家,则必须先显示女性。所有三个类别都有不同的属性,例如橄榄球的属性为“tds = 43”,而棒球的属性为“本垒打 = 32”。
因此服务器响应会产生困惑:
<player>
<baseballList>
<baseball
name="Adam"
sex="male"
HomeRuns="32"
reward="True"/>
</baseballList>
<basketballList>
<basketball
name="John"
sex="male"
Points="322"
reward="False"/>
<basketball
name="Sandra"
sex="female"
Points="332"
reward="True"/>
</basketballList>
<footballList>
<football
name= doug
Touchdowns= 33
sex=male
reward="false"/>
</footballList>
</player>
(如果球员姓名既适合足球又适合篮球,并且是男性,则您将两者结合起来)正如您所看到的,响应正在发送回我必须过滤掉的不感兴趣的玩家(不要问为什么),并且当玩家进行多种运动时,它不会合并数据。因此,对于我的方法,我有一个 xml 处理程序工厂,它将 xml 发送到指定的“玩家”处理程序。看起来像:
public class PlayerHandler implements XmlHandler {
private static PlayerHandler handler = new PlayerHandler();
private PlayerHandler() {
}
public static PlayerHandler getInstance() {
return handler;
}
public void load(String localName, String qName, Attributes attributes) {
if (localName != null && attributes != null) {
if (localName.equalsIgnoreCase("football")||localName.equalsIgnoreCase("baseball")||localName.equalsIgnoreCase("basketball")) {
Player player = new Player();
if (localName.equalsIgnoreCase("football"))
player.category = "football"
player.TouchDowns=attributes.getValue("TouchDowns");
else if (localName.equalsIgnoreCase("baseball"))
player.HomeRuns=arrtibutes.getValue("HomeRun");
player.category = "baseball"
else{
player.category = "basketball";
player.Points=attributes.getValue("Points");}
player.sex=attributes.getValue("sex");
player.name=attributes.getValue("name");
}
playerSorter.addPlayer(player);}}
我为对象创建了一个类文件:
public class Player implements Serializable{
public String category;
public String rewards;
public String TouchDowns;
public String Points;
public String HomeRuns;
public String sex;
public String Name;
}
我正在使用一个名为“playerSorter”的类进行所有排序,其中的 addPlayer() 方法仅在满足指定条件时填充列表,然后我有一个 getPlayers() 方法,该方法调用我的 checkForAthleteWithInTwoSports() 方法(检查并查看是否有篮球和足球运动员)然后返回排序列表,其中女性首先显示(如果适用)。从我的主页调用 getPlayers() 方法,然后将其设置为适配器类。更好的 xml 响应将使这样的任务变得更加容易,但事实并非如此,我想找到一种更有效的方法来完成此任务。如果有人能帮助我找到一个好的设计模式来解决这个问题,或者提供任何建议,我将非常感激。(此外,这些类别有更多的属性,而不仅仅是“本垒打、得分或达阵”,只是试图简化。)
最佳答案
不知道这里是否有特定的设计模式可以解决您的问题;从我的角度来看,您的模型缺少一些抽象,因为您主要使用字符串来表示您的域模型。这与 OOP 背道而驰,OOP 的思想是用对象来表示事物,以便您可以将行为委托(delegate)给它们。作为一个例子,考虑这段代码:
if (localName.equalsIgnoreCase("football"))
player.category = "football"
player.TouchDowns=attributes.getValue("TouchDowns");
else if (localName.equalsIgnoreCase("baseball"))
player.HomeRuns=arrtibutes.getValue("HomeRun");
player.category = "baseball"
else{
player.category = "basketball";
player.Points=attributes.getValue("Points");}
这可以通过创建三个类来表示每种运动表现(FootballPerformance
、BaseballPerformance
和 BasketballPerformance
)来轻松改进,其中每个类都包含适用于它们的属性。一旦完成,您就可以将对 XML 节点的读取委托(delegate)给类本身(请耐心等待,我不是 Java 程序员,所以我将使用伪代码):
public class BasketballPerformance extends SportPerformance {
private Integer points;
//Constructor
public BasketballPerformance(Attributes attributes)
{
this.points = attributes.getValue("Points");
}
public getPoints()
{
return this.points;
}
}
类 FootballPerformance
和 BaseballPerformance
非常相似,采用一组属性并根据它们填充自身。通过将相同的想法应用于 Player
类,您还可以将对象创建分散为:
public Sport createSportPerformanceInstance(String name, Attributes attributes)
{
if (name.equalsIgnoreCase("football"))
{return new BasketballPerformance(attributes);}
else
if (name.equalsIgnoreCase("baseball"))
{return new BaseballPerformance(attributes);}
...
}
public void load(String localName, String qName, Attributes attributes)
{
SportPerformance sportPerformance = this.createSportPerformanceInstance(localName, attributes);
Player player = new Player(Attributes attributes);
player.sportPerformance = sportPerformance;
}
请注意,作为一个很好的副作用,如果您稍后添加一项新运动,您只需实现新类并在 createSportPerformanceInstance
方法中添加一个新分支,而不是深入到一个大的项目中方法。
稍后可以通过让 Player
保存一组表演而不是仅一个表演并让 PlayerHandler
在创建播放器之前检查播放器是否存在来改进代码。新的一个。新方法看起来像这样:
public void load(String localName, String qName, Attributes attributes)
{
SportPerformance sportPerformance = this.createSportPerformanceInstance(localName, attributes);
String playerName=attributes.getValue("name");
Player player;
if (!this.playerExists(playerName))
{
player = new Player(attributes);
} else
{
player = this.getPlayerByName(playerName);
}
player.addPerformance(sportPerformance);
}
好的一点是,现在您可以通过实现 Comparable 接口(interface)将排序顺序委托(delegate)给玩家本身,并且该模型也更适合您尝试建模的现实,因为您有一个在不同运动项目上有不同表现的球员。
话虽如此,您可能会在 Creational design patterns 中找到一些灵感。 ,特别是在Builder , Factory和 Abstract Factory .
HTH
关于java - 寻找合适的设计模式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14880848/
假设我正在使用 segues 转换 View Controller 。我在 View Controller 1 上有一个 textField,在第二个 View Controller 上有一个标签。当
在下面的代码中,当我在表中插入数据时,回滚的目的是什么,如果我想回滚,我不应该插入它,那么使用回滚的合适方法是什么? BEGIN TRANSACTION Insert into dimCustomr
我一直在阅读一些帖子,并想知道是否有人可以介绍 TrieMap 何时比使用 HashMap 更可取的情况。 那么本质上是什么架构决策应该激励使用 TrieMap? 最佳答案 根据文档。 它是可以在多线
什么时候 do-while 比其他类型的循环更好?有哪些常见场景比其他场景更好? 我了解 do-while 的功能,但不了解何时使用它。 最佳答案 当您需要至少完成一次某事,但不知道启动循环之前的次数
fileExistsAtPath 的文档如下: Attempting to predicate behavior based on the current state of the file syst
当 XCode 分析我的代码时,它发现了潜在的内存泄漏。我使用 ARC,但我了解到 ARC 不处理 C 类型。因为我使用 CGImageRef 来创建 UIImage 并分配给 UIImageView
我有一个每天更新一次的大型数据集。我正在缓存对该数据进行昂贵查询的结果,但我想每天更新该缓存。我正在考虑使用 CacheItemRemovedCallback 每天重新加载我的缓存,但我有以下问题:
我了解 IoC 容器是什么,并且一直在阅读结构图。该技术似乎很容易使用。我的问题是,使用 IoC 容器的适当粒度级别是多少? 我看到以下可能的 IoC 应用级别: 打破所有对象之间的所有依赖关系——当
我用 Java 编写了一个应用程序。我从数据库中获取一个表(客户端),其中包含以下字段: 名称 |姓氏 |地址 在我的应用中存储这些数据的最佳解决方案是什么?我应该为每个客户端创建一个对象并将这些对象
这个问题在这里已经有了答案: Use of 'prototype' vs. 'this' in JavaScript? (16 个答案) 关闭 8 年前。 function A() { this
我已经试验了一段时间 asyncio 并阅读了 PEPs ;一些教程;甚至是 O'Reilly book 。 我想我已经掌握了窍门,但我仍然对 loop.close() 的行为感到困惑,我不太清楚何时
它是否正确,因为在 Windows 中并没有说它不好或不推荐。 例如像这样: int APIENTRY _tWinMain(HINSTANCE hInstance,
我在更新我的网站时遇到问题,谷歌搜索结果显示指向旧页面的链接,这些链接现在是 404,其中一些甚至包含已弃用的内容。 我的问题是关于 301 的使用。旧页面具有深层嵌套页面,如下例所示: ww
我使用 JUnit 和 FEST 对我们的应用程序进行 Swing 集成测试,我在测试用例中多次启动和停止。 @after 是否应该包含对 robot.cleanUp() 的调用? 最佳答案 一般规则
我是一名从未真正使用过 .dll 文件的程序员。当然,当我需要第 3 方软件时,例如图形库、帮助我创建图形的库等。我会将引用/ddl 文件添加到我的程序中并在我的代码中使用它们。 此外,您似乎可以将
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 这个问题似乎不是关于 a specific programming problem, a softwar
我目前正在尝试更多地利用 kotlin 协程。但我面临一个问题:在这些协程中使用 moshi 或 okhttp 时,我收到警告: “不适当的阻塞方法调用” 解决这些问题的最佳方法是什么?我真的不想不合
我有点不确定什么时候适合使用 Html.RenderAction() 来渲染我的 View ,什么时候不适合。我的理解是,因为它不是 ASP.NET MVC 的“官方”组件,所以使用它是不好的做法,它
假设你想开发你的 Controller ,以便你使用 ViewModel 来包含你渲染的 View 的数据,所有数据都应该包含在 ViewModel 中吗?什么条件下可以绕过 ViewModel? 我
您何时考虑在 .NET 中创建用户控件?您是否有一些基本标准来从页面中排除您的代码并引入新的用户控件? 通常我倾向于遵循这些来决定我是否需要用户控件: 当使用单独的用户控件使页面看起来更具可读性时 当
我是一名优秀的程序员,十分优秀!