कुछ अन्य प्रतिमानों के पक्ष में OOP के डाउनसाइड्स पर एक स्केथिंग लेख के माध्यम से पढ़ना मैंने एक उदाहरण में चलाया है जिसमें मुझे बहुत अधिक गलती नहीं मिल सकती है।
मैं लेखक के तर्कों के लिए खुला रहना चाहता हूं, और यद्यपि मैं सैद्धांतिक रूप से उनकी बातों को समझ सकता हूं, विशेष रूप से एक उदाहरण मैं यह कल्पना करने की कोशिश कर रहा हूं कि यह कैसे बेहतर होगा, यह कहना है, एक एफपी भाषा।
// Consider the case where “SimpleProductManager” is a child of
// “ProductManager”:
public class SimpleProductManager implements ProductManager {
private List products;
public List getProducts() {
return products;
}
public void increasePrice(int percentage) {
if (products != null) {
for (Product product : products) {
double newPrice = product.getPrice().doubleValue() *
(100 + percentage)/100;
product.setPrice(newPrice);
}
}
}
public void setProducts(List products) {
this.products = products;
}
}
// There are 3 behaviors here:
getProducts()
increasePrice()
setProducts()
// Is there any rational reason why these 3 behaviors should be linked to
// the fact that in my data hierarchy I want “SimpleProductManager” to be
// a child of “ProductManager”? I can not think of any. I do not want the
// behavior of my code linked together with my definition of my data-type
// hierarchy, and yet in OOP I have no choice: all methods must go inside
// of a class, and the class declaration is also where I declare my
// data-type hierarchy:
public class SimpleProductManager implements ProductManager
// This is a disaster.
ध्यान दें कि मैं लेखक के तर्कों के खिलाफ या "क्या कोई तर्कसंगत कारण है कि इन 3 व्यवहारों को डेटा पदानुक्रम से जुड़ा होना चाहिए?" के लिए एक खंडन की तलाश नहीं है।
मैं विशेष रूप से पूछ रहा हूं कि यह उदाहरण कैसे एफपी भाषा में मॉडलिंग / प्रोग्राम किया जाएगा (वास्तविक कोड, सैद्धांतिक रूप से नहीं)?