Leggendo un articolo severo sugli aspetti negativi di OOP a favore di qualche altro paradigma ho trovato un esempio che non riesco a trovare.
Voglio essere aperto agli argomenti dell'autore, e sebbene io possa teoricamente comprendere i loro punti, un esempio in particolare sto facendo fatica a immaginare come sarebbe meglio implementato, per esempio, in un linguaggio FP.
Da: link
// 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.
Si noti che non sto cercando una confutazione a favore o contro gli argomenti dello scrittore per "C'è qualche motivo razionale per cui questi 3 comportamenti dovrebbero essere collegati alla gerarchia dei dati?".
Quello che sto specificatamente chiedendo è come questo esempio sarà modellato / programmato in un linguaggio FP (codice reale, non in teoria)?