A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Collections;
  6. namespace CollectionDemo
  7. {
  8.     class Program
  9.     {
  10.         static void Main(string[] args)
  11.         {
  12.             Student s1 = new Student();
  13.             Student s2 = new Student();
  14.             Teacher t1 = new Teacher();
  15.             Teacher t2 = new Teacher();
  16.             s1.Name = "dwyane";
  17.             s1.Id = 1;
  18.             s2.Name = "lebron";
  19.             s2.Id = 2;
  20.             t1.Name = "paul";
  21.             t1.Id = 3;
  22.             t2.Name = "kobe";
  23.             t2.Id = 4;
  24. /*
  25.             ArrayList list = new ArrayList(5)
  26.             list.Add(s1);
  27.             list.Add(s2);
  28.             list.Add(t1);
  29.             list.Add(t2);
  30. */
  31.             Hashtable map = new Hashtable();
  32.             map.Add(1, s1);
  33.             map.Add(2, s2);
  34.             map.Add(3, t1);
  35.             map.Add(4, t2);
  36.             foreach (DictionaryEntry o in map)
  37.             {

  38.                 Console.ReadLine();
  39.             }
  40.         }
  41.     }
  42. }
复制代码
===================
怎么遍历输出名字和学号?

评分

参与人数 1技术分 +1 收起 理由
苏波 + 1

查看全部评分

3 个回复

正序浏览
for 循环 foreach 职业循环专家! 各种循环  相信他 同学!
回复 使用道具 举报
你已经写出来了
然后 它的键值就是o.Key 和o.Value
你foreach(Dictionayr o in map)
{
console.writeline(o.Key+" "+o.Value)
}
就行了 建议你可以学习下泛型集合Dictionary 比这个功能要多些
回复 使用道具 举报
HashTable对象里面存的形式是以键值对形式。
你的题目里面可以根据学号找到实例名,再找对应的名字。
再加载到for循环中就可以遍历了啊。{:soso_e100:}
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马