tipsy
08/18/2017, 12:41 PMMap<String, Array<String>>
with the same content
first one prints {a=[1],b=[1, 2]}
, second one prints {a=[Ljava.lang.String;@2bb4a0bf, b=[Ljava.lang.String;@6f7d77e2]}
the underlying datatype for the first one is String[]
, the other one is the result of calling toTypedArray()
.
but shouldn't these behave the same when they're both Map<String, Array<String>>
?