zoukankan      html  css  js  c++  java
  • 哈希表

    Hashtable在命名空间using System.Collections中,实现基于键值的查找很方便
    using System;
    using System.Collections.Generic;
    using System.Text;
    using System.Collections;

    namespace 哈希表
    {
        
    class Program
        
    {
            
    static void Main(string[] args)
            
    {
                Hashtable table 
    = new Hashtable();
                Employee P1 
    = new Employee("1""li""21");
                Employee P2 
    = new Employee("2""zhang""22");
                table.Add(P1.ID, P1);
                table.Add(P2.ID, P2);


                
    foreach (object o in table.Keys)
                
    {
                    
    if (o == "1")
                    
    {
                        Console.WriteLine(((Employee)table[o]).ID);
                        Console.WriteLine(((Employee)table[o]).age);
                        Console.WriteLine(((Employee)table[o]).name);
                    }

                    
    {

                    }

                }


            }

            
    public struct Employee
            
    {
                
    public Employee(string a, string b, string c)
                
    {
                    ID 
    = a;
                    name 
    = b;
                    age 
    = c;
                }

                
    public string ID;
                
    public string name;
                
    public string age;
            }

        }

    }

    肩负责任,永不退缩
  • 相关阅读:
    移动端-纯css隐藏滚动条解决方案
    阻止点击穿透
    JS的防抖与节流
    go 自动安装项目依赖包
    git 修改远程仓库
    git 基础命令
    go 包govalidator
    go email
    windows下Redis的安装和使用
    go xorm,负载均衡
  • 原文地址:https://www.cnblogs.com/ATP/p/860620.html
Copyright © 2011-2022 走看看