UML Class Diagram HashMap Data Type

-3

Come posso mostrare un tipo di dati HashMap Java in UML Class Diagram (o nel dizionario C #)?

vale a dire. Questa classe:

public class Test
{
    private Map<String, String> map;
    private Map<String, int> map1;    
    public Test(){
        this.map = new HashMap<String, String>();
        this.map1 = new HashMap<String, int>();
    }    
    public getMap(){
        return this.map;
    }    
    public addToMap(String key, String value){
        this.map.put(key,value);
    }    
    public getMap1(){
        return this.map1;
    }    
    public addToMap1(String key, int value){
        this.map1.put(key,value);
    }
}

Se possibile, fornire un esempio con il diagramma di classe UML.

    
posta J. Doe 02.07.2018 - 17:25
fonte

1 risposta

1

Lo mostreresti come faresti con qualsiasi altro tipo di dati.

(Generato in IntelliJ)

    
risposta data 02.07.2018 - 17:58
fonte

Leggi altre domande sui tag