jjzjj

java - 在 Java 中使用枚举用动物对象填充动物园对象

coder 2024-03-09 原文

由于习惯了老式的过程式 C 编程,我现在正在学习 Java,并且可能很明显地认识到难点在于设计,而不是语法。

关于如何填充我的动物园,我花了几个小时来讨论一个又一个的想法:

我有一个 class Zoo 和一个抽象的 class AnimalAnimal 有几个非抽象子类,称为 LionGiraffeZebraPenguin 等。一个 Zoo 对象将恰好包含 Animal 的每个子类的一个实例,并且每个此类实例都包含对其所属的唯一 Zoo 实例的引用。

我想按特定顺序遍历动物园中的动物(比如您沿着人行道行走),并在字典中查找动物园中的动物。更准确地说,在某个时候我将解析一个包含动物名称的文本文件(例如,对于字符串“LION”我想获得唯一的 Lion 实例)。字符串与动物之间存在一对一的映射。我决定使用 LinkedHashMap<String, Animal>

我想编写易于管理的代码,使我能够在未来轻松添加更多动物。到目前为止,我最好的方法如下。

Zoo 类中,我定义了一个 enum,它反射(reflect)了我想要的动物的顺序,它的元素与我将在文本文件中解析的字符串完全对应。

private enum Species { LION, GIRAFFE, ZEBRA, PENGUIN };

Zoo我还有一个创建动物对象的方法:

private Animal makeAnimal(Species species)
{
    switch (species)
    {
        case LION:
            // create a Lion object;
            break;
        case GIRAFFE:
            // ...
    }
    // return the Animal object created above;
}

作为 Zoo 构造函数的一部分,我遍历 enum 并将元素插入到名为 LinkedHashMapanimals 中:

for (Species species : Species.values())
    animals.put(species.name(), makeAnimal(species));

要添加新动物,我必须

  1. 添加一个子类到 Animal ,
  2. 将一个新元素粘贴到 enum 中,
  3. switch方法中的makeAnimal(Species species)语句中添加一个case。

这是一种合理而明智的方法吗?现在,在花时间写下这个问题后,我实际上对我的方法相当满意 ;),但也许我遗漏了一个明显的设计模式,我的解决方案有时会适得其反。我感觉名称 "LION" 和它的 class Lion 之间存在不理想的分离。

最佳答案

要求

阅读您的问题,我发现 Zoo 的以下要求:

  1. 按物种名称查找动物
  2. 定义物种顺序
  3. 将来轻松添加动物

1。按物种名称查找动物

正如您所提到的,字符串 "LION" 和类 Lion 之间存在不希望的分隔。在 Effective Java 第 50 项中,以下内容是关于字符串的:

Strings are poor substitutes for other value types. When a piece of data comes into a program from a file, from the network, or from keyboard input, it is often in string form. There is a natural tendency to leave it that way, but this tendency is justified only if the data really is textual in nature. If it’s numeric, it should be translated into the appropriate numeric type, such as int, float, or BigInteger. If it’s the answer to a yes-or-no question, it should be translated into a boolean. More generally, if there’s an appropriate value type, whether primitive or object reference, you should use it; if there isn’t, you should write one. While this advice may seem obvious, it is often violated.

因此,与其按物种名称查找动物,不如按物种实例查找动物。

2。定义物种顺序

要定义物种的顺序,您需要使用具有可预测迭代顺序的集合,例如提到的 LinkedHashMap

3。将来轻松添加动物

添加动物目前包括您提到的三个步骤。使用枚举的副作用是只有有权访问源代码的人才能添加新物种(因为必须扩展 Species 枚举)。

现在考虑,Species.LION,这是 Lion 类的物种。请注意,这种关系在语义上与类及其实例化 之间的关系相同。因此,一个更优雅的解决方案是使用 Lion.class 作为 Lion 的物种。这也减少了添加动物的步骤,因为您可以免费获得该物种。

其他部分代码分析

动物园

在您的提议中,动物园有责任创造动物。结果是每个创建的动物园都需要使用所有定义的动物(因为 Species 枚举)使用指定的顺序,会有动物园之间没有差异。最好将动物的创建与动物园分离,以便动物和动物园都具有更大的灵 active 。

动物

由于它们的灵 active ,接口(interface)应该优先于抽象类。如 Effective Java 第 18 项中所述:

Item 18. Prefer interfaces to abstract classes

The Java programming language provides two mechanisms for defining a type that permits multiple implementations: interfaces and abstract classes. The most obvious difference between the two mechanisms is that abstract classes are permitted to contain implementations for some methods while interfaces are not. A more important difference is that to implement the type defined by an abstract class, a class must be a subclass of the abstract class. Any class that defines all of the required methods and obeys the general contract is permitted to implement an interface, regardless of where the class resides in the class hierarchy. Because Java permits only single inheritance, this restriction on abstract classes severely constrains their use as type definitions.

循环引用

在您的问题中,您提到动物还应该引用其所在的动物园。这引入了应尽可能避免的循环引用。

One of many disadvantages of circular references is:

Circular class references create high coupling; both classes must be recompiled every time either of them is changed.

示例实现

public interface Animal {}

public class Zoo {
  private final SetMultimap<Class<? extends Animal>, Animal> animals;

  public Zoo() {
    animals = LinkedHashMultimap.create();
  }

  public void addAnimal(Animal animal) {
    animals.put(animal.getClass(), animal);
  }

  @SuppressWarnings("unchecked") // the cast is safe
  public <T extends Animal> Set<T> getAnimals(Class<T> species) {
    return (Set<T>) animals.get(species);
  }
}

用法

static class Lion implements Animal {}

static class Zebra implements Animal {}

final Zoo zoo = new Zoo();
zoo.addAnimal(new Lion());
zoo.addAnimal(new Zebra());
zoo.addAnimal(new Lion());

zoo.getAnimals(Lion.class); // returns two lion instances

zoo.getSpeciesOrdering(); // returns [Lion.class, Zebra.class]

讨论

上面的实现支持每个物种的多个动物实例,因为这似乎对动物园更有意义。如果只需要一只动物,请考虑使用 Guava's ClassToInstanceMap而不是 SetMultimap。

动物的创造不被视为设计问题的一部分。如果需要构建更复杂的动物,请考虑使用 the builder pattern .

现在添加动物就像创建一个实现 Animal 接口(interface)的新类并将其添加到动物园一样简单。

关于java - 在 Java 中使用枚举用动物对象填充动物园对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34793811/

有关java - 在 Java 中使用枚举用动物对象填充动物园对象的更多相关文章

  1. ruby - 如何使用 Nokogiri 的 xpath 和 at_xpath 方法 - 2

    我正在学习如何使用Nokogiri,根据这段代码我遇到了一些问题:require'rubygems'require'mechanize'post_agent=WWW::Mechanize.newpost_page=post_agent.get('http://www.vbulletin.org/forum/showthread.php?t=230708')puts"\nabsolutepathwithtbodygivesnil"putspost_page.parser.xpath('/html/body/div/div/div/div/div/table/tbody/tr/td/div

  2. ruby - 如何从 ruby​​ 中的字符串运行任意对象方法? - 2

    总的来说,我对ruby​​还比较陌生,我正在为我正在创建的对象编写一些rspec测试用例。许多测试用例都非常基础,我只是想确保正确填充和返回值。我想知道是否有办法使用循环结构来执行此操作。不必为我要测试的每个方法都设置一个assertEquals。例如:describeitem,"TestingtheItem"doit"willhaveanullvaluetostart"doitem=Item.new#HereIcoulddotheitem.name.shouldbe_nil#thenIcoulddoitem.category.shouldbe_nilendend但我想要一些方法来使用

  3. ruby - 使用 RubyZip 生成 ZIP 文件时设置压缩级别 - 2

    我有一个Ruby程序,它使用rubyzip压缩XML文件的目录树。gem。我的问题是文件开始变得很重,我想提高压缩级别,因为压缩时间不是问题。我在rubyzipdocumentation中找不到一种为创建的ZIP文件指定压缩级别的方法。有人知道如何更改此设置吗?是否有另一个允许指定压缩级别的Ruby库? 最佳答案 这是我通过查看ruby​​zip内部创建的代码。level=Zlib::BEST_COMPRESSIONZip::ZipOutputStream.open(zip_file)do|zip|Dir.glob("**/*")d

  4. ruby - 为什么我可以在 Ruby 中使用 Object#send 访问私有(private)/ protected 方法? - 2

    类classAprivatedeffooputs:fooendpublicdefbarputs:barendprivatedefzimputs:zimendprotecteddefdibputs:dibendendA的实例a=A.new测试a.foorescueputs:faila.barrescueputs:faila.zimrescueputs:faila.dibrescueputs:faila.gazrescueputs:fail测试输出failbarfailfailfail.发送测试[:foo,:bar,:zim,:dib,:gaz].each{|m|a.send(m)resc

  5. ruby-on-rails - 使用 Ruby on Rails 进行自动化测试 - 最佳实践 - 2

    很好奇,就使用ruby​​onrails自动化单元测试而言,你们正在做什么?您是否创建了一个脚本来在cron中运行rake作业并将结果邮寄给您?git中的预提交Hook?只是手动调用?我完全理解测试,但想知道在错误发生之前捕获错误的最佳实践是什么。让我们理所当然地认为测试本身是完美无缺的,并且可以正常工作。下一步是什么以确保他们在正确的时间将可能有害的结果传达给您? 最佳答案 不确定您到底想听什么,但是有几个级别的自动代码库控制:在处理某项功能时,您可以使用类似autotest的内容获得关于哪些有效,哪些无效的即时反馈。要确保您的提

  6. ruby - 在 Ruby 中使用匿名模块 - 2

    假设我做了一个模块如下:m=Module.newdoclassCendend三个问题:除了对m的引用之外,还有什么方法可以访问C和m中的其他内容?我可以在创建匿名模块后为其命名吗(就像我输入“module...”一样)?如何在使用完匿名模块后将其删除,使其定义的常量不再存在? 最佳答案 三个答案:是的,使用ObjectSpace.此代码使c引用你的类(class)C不引用m:c=nilObjectSpace.each_object{|obj|c=objif(Class===objandobj.name=~/::C$/)}当然这取决于

  7. ruby - 使用 ruby​​ 和 savon 的 SOAP 服务 - 2

    我正在尝试使用ruby​​和Savon来使用网络服务。测试服务为http://www.webservicex.net/WS/WSDetails.aspx?WSID=9&CATID=2require'rubygems'require'savon'client=Savon::Client.new"http://www.webservicex.net/stockquote.asmx?WSDL"client.get_quotedo|soap|soap.body={:symbol=>"AAPL"}end返回SOAP异常。检查soap信封,在我看来soap请求没有正确的命名空间。任何人都可以建议我

  8. python - 如何使用 Ruby 或 Python 创建一系列高音调和低音调的蜂鸣声? - 2

    关闭。这个问题是opinion-based.它目前不接受答案。想要改进这个问题?更新问题,以便editingthispost可以用事实和引用来回答它.关闭4年前。Improvethisquestion我想在固定时间创建一系列低音和高音调的哔哔声。例如:在150毫秒时发出高音调的蜂鸣声在151毫秒时发出低音调的蜂鸣声200毫秒时发出低音调的蜂鸣声250毫秒的高音调蜂鸣声有没有办法在Ruby或Python中做到这一点?我真的不在乎输出编码是什么(.wav、.mp3、.ogg等等),但我确实想创建一个输出文件。

  9. ruby-on-rails - 按天对 Mongoid 对象进行分组 - 2

    在控制台中反复尝试之后,我想到了这种方法,可以按发生日期对类似activerecord的(Mongoid)对象进行分组。我不确定这是完成此任务的最佳方法,但它确实有效。有没有人有更好的建议,或者这是一个很好的方法?#eventsisanarrayofactiverecord-likeobjectsthatincludeatimeattributeevents.map{|event|#converteventsarrayintoanarrayofhasheswiththedayofthemonthandtheevent{:number=>event.time.day,:event=>ev

  10. ruby-on-rails - 'compass watch' 是如何工作的/它是如何与 rails 一起使用的 - 2

    我在我的项目目录中完成了compasscreate.和compassinitrails。几个问题:我已将我的.sass文件放在public/stylesheets中。这是放置它们的正确位置吗?当我运行compasswatch时,它不会自动编译这些.sass文件。我必须手动指定文件:compasswatchpublic/stylesheets/myfile.sass等。如何让它自动运行?文件ie.css、print.css和screen.css已放在stylesheets/compiled。如何在编译后不让它们重新出现的情况下删除它们?我自己编译的.sass文件编译成compiled/t

随机推荐