请问大家这里的countMap[t1]++是什么意思?没有看懂
如果说t1为string,这个countMap.string++是什么意思??
如果countMap1中已经有‘string’类型的(此时countMap1为countMap1:{string: 1}),那么就在原来基础上加1,也就变成countMap1:{string: 2}。若countMap2中‘string’类型的只有一个,则为countMap2:{string: 1}。 此时进行判断,countMap1 中的string个数和countMap2 中的string个数不同,就return false咯。
自加1