i'm experiencing something strange.. i have two va...
# announcements
t
i'm experiencing something strange.. i have two values of the type
Map<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>>
?