6黑马币
最佳答案public class Demo01 {
public static void main(String[] args) {
String s = "fdskai2353425hfdsakhfdska";
Map map = StringList(s); //接受一个字符串,返回一个map集合.
ListMap(map); //接受一个map集合,遍历并打印.
}
public static void ListMap(Map map) {//遍历map
Set se = new HashSet();
se = map.entrySet();
Iterator it = se.iterator();
while(it.hasNext())
{
Entry en = (Entry)it.next ...
| |
| |
| |
| |