GetHashCode 및 HashTable, Dictionary
2890 단어 Hashtable
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
using System.IO;
using System.Collections;
using Data = System.Data.SqlClient;
namespace COL_TEST
{
class Program
{
static void Main(string[] args)
{
// GetHashCode
//Console.WriteLine(ht.GetHashCode());
//Console.WriteLine(ht.GetHashCode());
A a = new A(2, 2);
A aa = new A(1, 4);
A bb = new A(1, 3);
Dictionary<A, int> hs = new Dictionary<A, int>();
hs.Add(a, 2);
hs.Add(aa, 2);
hs.Add(bb, 2);
foreach (KeyValuePair<A, int> p in hs)
{
Console.WriteLine("Key: " + p.Key + " Value: " + p.Value);
Console.WriteLine("hashCode:{0}", p.Key.GetHashCode());
}
Console.WriteLine("-----------------");
/***************/
Hashtable hht = new Hashtable();
Class3 cc = new Class3(2, 3);
Class3 cc2 = new Class3(1, 4);
Class3 cc3 = new Class3(3, 3);
hht.Add(cc, "test1");
hht.Add(cc2, "test2");
hht.Add(cc3, "test3");
//cc.x = 5; // cc , cc
foreach (var item in hht.Keys)
{
Console.WriteLine(item.ToString());
Console.WriteLine(hht[item]);
}
Console.Read();
// hashTable , GetHashCode , toString
//
}
}
public struct MyStruct
{
public int _sx;
public string _msg;
public int _id;
public DateTime _epoch;
}
class A
{
int i, j;
public A(int i, int j)
{
this.i = i;
this.j = j;
}
public override Int32 GetHashCode()
{
return i * j;
}
public override string ToString()
{
return String.Format("({0},{1})", i, j);
}
}
class Class3
{
public int x;
int y;
public Class3(int x, int y)
{
this.x = x;
this.y = y;
}
public override int GetHashCode()
{
Console.WriteLine(" hashcode");
return x + y;
}
public override bool Equals(object obj)
{
Console.WriteLine(" equals");
return base.Equals(obj);
}
public override string ToString()
{
return x.ToString() + y.ToString();
}
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
java에서 Hashtable과 HashMap의 차이점 분석1. Hashtable은 Dictionary의 하위 클래스입니다 HashMap: HashMap과 Hashtable은 모두 맵 인터페이스의 실현 클래스이다. 2. Hashtable의 방법은 동기화()이고 HashMap...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.