6

Ho un modello di progettazione qui dove c'è un generatore di oggetti (MorselGenerator e relativi figli), qualsiasi istanza di cui genera sempre lo stesso tipo esatto di oggetto (Morsels e i suoi figli), ma il controllo dei tipi non mi consente di eseguire alcuna operazione su due o più di questi oggetti generati, ritenendo che potrebbero essere diversi.Inferenza tipo Scala non riesce a notare che questi tipi sono identici, qualunque essi siano

Come ottengo questo passato il controllo di tipo?

trait Morsel 
{ 
    type M <: Morsel 
    def calories : Float 
    def + (v : M) : M 
} 

trait MorselGenerator 
{ 
    type Mg <: Morsel 
    def generateMorsel : Mg 
} 

class HotDog(c : Float, l : Float, w : Float) extends Morsel 
{ 
    type M = HotDog 
    val calories : Float = c 
    val length : Float = l  
    val width : Float = w 
    def + (v : HotDog) : HotDog = new HotDog(v.calories + calories, v.length + length, v.width + width) 
} 

class HotDogGenerator extends MorselGenerator 
{ 
    type Mg = HotDog 
    def generateMorsel : HotDog = new HotDog(500.0f, 3.14159f, 445.1f) 
} 

object Factory 
{ 
    def main (args : Array[String]) 
    { 
     val hdGen = new HotDogGenerator() 
     println(eatTwo(hdGen)) 
    } 

    def eatTwo (mGen : MorselGenerator) 
    { 
     val v0 : mGen.Mg = mGen.generateMorsel 
     val v1 : mGen.Mg = mGen.generateMorsel 
     v0 + v1       /// ERROR HERE 
    } 
} 

compilatore genera il seguente errore di compilazione

Generator.scala:43: error: type mismatch; 
found : v1.type (with underlying type mGen.Mg) 
required: v0.M 
     v0 + v1       /// ERROR HERE 
     ^one error found 


Aggiornamento

Ecco il codice C++ che è più o meno equivalente a quello che sto cercando di fare. Si noti che la funzione eatTwo è completamente polimorfica e non fa riferimento a specifici tipi derivati ​​di Morsel o MorselGenerator.

#include <stdlib.h> 
#include <stdio.h> 

template <class M> class Morsel 
{ 
public: 
    Morsel(float c) : calories(c) {} 
    float calories; 
    virtual M operator + (const M& rhs) const = 0; 
}; 

template <class M> class MorselGenerator 
{ 
public: 
    virtual M * generateMorsel() const = 0; 
}; 

class HotDog : public Morsel<HotDog> 
{ 
public: 
    HotDog(float c, float l, float w) : Morsel<HotDog>(c), length(l), width(w) {} 
    float length, width; 

    HotDog operator + (const HotDog& rhs) const 
    { return HotDog(calories+rhs.calories, length+rhs.length, width+rhs.width); } 
}; 

class HotDogGenerator : public MorselGenerator<HotDog> 
{ 
    HotDog * generateMorsel() const { return new HotDog(500.0f, 3.14159f, 445.1f); } 
}; 

/////////////////////////////////////////////// 

template <class MorselType> float eatTwo (const MorselGenerator<MorselType>& mGen) 
{ 
    MorselType * m0 = mGen.generateMorsel(); 
    MorselType * m1 = mGen.generateMorsel(); 
    float sum = ((*m0) + (*m1)).calories; 
    delete m0; delete m1; 
    return sum; 
} 

int main() 
{ 
    MorselGenerator<HotDog> * morselStream = new HotDogGenerator(); 
    printf("Calories Ingested: %.2f\n", eatTwo(*morselStream)); 
    delete morselStream; 
} 
+0

forse questo aiuterà: http://stackoverflow.com/questions/9198562/scala-self-type-and-this-type-in-collections-issue – tuxSlayer

risposta

2

Questo è solo come tipi utente funzionano in Scala: sono solo considerati uguali quando gli oggetti esterni sono (noto al compilatore di essere) stesso. Una possibilità è quella di utilizzare parametri di tipo invece:

trait Morsel[M <: Morsel] 
{ 
    def calories : Float 
    def + (v : M) : M 
} 

trait MorselGenerator[Mg <: Morsel] 
{ 
    def generateMorsel : Mg 
} 

... 
+0

Bene, questo non sembra funzionare, in realtà.In primo luogo, dobbiamo definire i tratti così: "tratto Morsel [Mg <: Morsel [Mg]]" ecc. Che sembra stranamente circolare. Seguendo questo disegno, il compilatore è più confuso che mai quando provo ad aggiungere i due Morsel (HotDogs). – Fooberman

+1

Questo non è più circolare di 'classe Hotdog ... {tipo M = HotDog ...}'. Vedi http://en.wikipedia.org/wiki/Curiously_recurring_template_pattern –

4

L'errore ha un senso, perché nel metodo in cui compilazione fallisce, il compilatore non può garantire che non si sta aggiungendo gelato ad un hot dog.

metodo

Il + in HotDog aiuta evidenziare il problema, e in realtà non hanno l'override del metodo, piuttosto che hai aggiunto uno nuovo:

def + (v : HotDog) : HotDog = new HotDog(v.calories + calories, v.length + length, v.width + width) 

È esplicitamente necessario il tipo che viene aggiunto ad avere la stesso tipo di "questo".

Definire Morsel in quanto tale, e il problema è quasi risolto:

trait Morsel { 
    def calories : Float 
    def + (v : Morsel) : Morsel 
} 

La parte finale è quello di sovrascrivere il metodo + correttamente:

override def + (v : Morsel): Morsel = v match { 
    case hd: HotDog => new HotDog(hd.calories + calories, hd.length + length, hd.width + width) 
    case x => throw new IllegalArgumentException("eurgh!") 
} 

io non sono sicuro se è possibile ottenere il compilatore per evitare l'aggiunta di gelato e hot dog, utilizzando il codice nel modulo fornito.

0

Una delle possibili soluzioni (ho sostituito con +add qui per stare lontano da +(String, String), alla fine, + è ok):

trait Morsel[M <: Morsel[M]] { /// this 
    this: M =>      /// and this make the trick 
    def calories : Float 
    def add(v : M) : M 
} 

trait MorselGenerator[Mg <: Morsel[Mg]] 
{ 
    def generateMorsel : Mg 
} 

class HotDog(c : Float, l : Float, w : Float) extends Morsel[HotDog] 
{ 
    val calories : Float = c 
    val length : Float = l  
    val width : Float = w 
    override def add (v : HotDog) : HotDog = new HotDog(v.calories + calories, v.length + length, v.width + width) 
} 

class HotDogGenerator extends MorselGenerator[HotDog] 
{ 
    def generateMorsel : HotDog = new HotDog(500.0f, 3.14159f, 445.1f) 
} 

object Factory extends App 
{ 
    def eatTwo[M <: Morsel[M]](mGen : MorselGenerator[M]) = { 
    val v0 = mGen.generateMorsel 
    val v1 = mGen.generateMorsel 
    v0 add v1  
    } 

    val hdGen = new HotDogGenerator() 
    println(eatTwo(hdGen)) 
} 
0

E leggera un'altra variante:

trait MorselGenerator { 
    type M <: Morsel 

    trait Morsel { this: M => 
    def calories : Float 
    def add (v : M) : M 
    }  

    def generateMorsel : M 
} 

class HotDogGenerator extends MorselGenerator 
{ 
    type M = HotDog 

    class HotDog(c : Float, l : Float, w : Float) extends Morsel { 
    val calories : Float = c 
    val length : Float = l  
    val width : Float = w 
    def add (v : HotDog) : HotDog = new HotDog(v.calories + calories, v.length + length, v.width + width) 
    } 

    def generateMorsel: HotDog = new HotDog(500.0f, 3.14159f, 445.1f) 
} 

object Factory extends App 
{ 
    val hdGen = new HotDogGenerator() 

    hdGen.generateMorsel add hdGen.generateMorsel add hdGen.generateMorsel 

    produceDouble(hdGen) 

    def produceDouble(gen: MorselGenerator): MorselGenerator#Morsel = { 
    gen.generateMorsel add gen.generateMorsel 
    } 
} 

probabilmente meno utile, ma potrebbe mostrare dov'è il problema. Scala ha tipi "dipendenti dal percorso", quindi obj1.Type e obj2.Type sono diversi tipi anche se obj1.type == obj2.type.