การมีห่วงโซ่ของการดำเนินการ "instanceof" ถือเป็น "กลิ่นรหัส" คำตอบมาตรฐานคือ "ใช้ความหลากหลาย" ฉันจะทำอย่างไรในกรณีนี้?
มีคลาสย่อยจำนวนหนึ่งของคลาสพื้นฐาน ไม่มีใครอยู่ภายใต้การควบคุมของฉัน สถานการณ์ที่คล้ายคลึงกันจะเป็นกับคลาส Java Integer, Double, BigDecimal เป็นต้น
if (obj instanceof Integer) {NumberStuff.handle((Integer)obj);}
else if (obj instanceof BigDecimal) {BigDecimalStuff.handle((BigDecimal)obj);}
else if (obj instanceof Double) {DoubleStuff.handle((Double)obj);}
ฉันสามารถควบคุม NumberStuff และอื่น ๆ ได้
ฉันไม่ต้องการใช้โค้ดหลายบรรทัดโดยที่ไม่กี่บรรทัดจะทำได้ (บางครั้งฉันทำแผนที่ HashMap Integer.class กับอินสแตนซ์ของ IntegerStuff, BigDecimal.class ไปยังอินสแตนซ์ของ BigDecimalStuff เป็นต้น แต่วันนี้ฉันต้องการสิ่งที่ง่ายกว่านี้)
ฉันต้องการอะไรง่ายๆดังนี้:
public static handle(Integer num) { ... }
public static handle(BigDecimal num) { ... }
แต่ Java ก็ไม่ได้ผลเช่นนั้น
ฉันต้องการใช้วิธีการคงที่เมื่อจัดรูปแบบ สิ่งที่ฉันกำลังจัดรูปแบบเป็นแบบผสมโดยที่ Thing1 สามารถมีอาร์เรย์ Thing2s และ Thing2 สามารถมีอาร์เรย์ของ Thing1s ฉันมีปัญหาเมื่อฉันใช้รูปแบบของฉันเช่นนี้:
class Thing1Formatter {
private static Thing2Formatter thing2Formatter = new Thing2Formatter();
public format(Thing thing) {
thing2Formatter.format(thing.innerThing2);
}
}
class Thing2Formatter {
private static Thing1Formatter thing1Formatter = new Thing1Formatter();
public format(Thing2 thing) {
thing1Formatter.format(thing.innerThing1);
}
}
ใช่ฉันรู้ HashMap และโค้ดอีกเล็กน้อยก็สามารถแก้ไขได้เช่นกัน แต่ดูเหมือนว่า "อินสแตนซ์ของ" จะสามารถอ่านและบำรุงรักษาได้โดยเปรียบเทียบ มีอะไรง่ายๆ แต่ไม่เหม็น?
หมายเหตุเพิ่มเมื่อ 5/10/2010:
ปรากฎว่าอาจจะมีการเพิ่มคลาสย่อยใหม่ในอนาคตและรหัสที่มีอยู่ของฉันจะต้องจัดการอย่างสง่างาม HashMap บน Class จะไม่ทำงานในกรณีนั้นเนื่องจากจะไม่พบ Class คำสั่ง chain of if ที่เริ่มต้นด้วยคำที่เฉพาะเจาะจงที่สุดและลงท้ายด้วยคำสั่งทั่วไปน่าจะดีที่สุด:
if (obj instanceof SubClass1) {
// Handle all the methods and properties of SubClass1
} else if (obj instanceof SubClass2) {
// Handle all the methods and properties of SubClass2
} else if (obj instanceof Interface3) {
// Unknown class but it implements Interface3
// so handle those methods and properties
} else if (obj instanceof Interface4) {
// likewise. May want to also handle case of
// object that implements both interfaces.
} else {
// New (unknown) subclass; do what I can with the base class
}
[text](link)
โพสต์ลิงค์ในความคิดเห็น