Computer >> कंप्यूटर >  >> प्रोग्रामिंग >> C#

सी # में इस उदाहरण के लिए हैश कोड प्राप्त करें

इस उदाहरण के लिए हैश कोड प्राप्त करने के लिए, कोड इस प्रकार है -

उदाहरण

using System;
public class Demo {
   public static void Main() {
      string[] arr = {"tom", "amit", "kevin", "katie"};
      Type t1 = arr.GetType();
      Type t2 = t1.GetElementType();
      Console.WriteLine("Type = "+t2.ToString());
      Console.WriteLine("Hash Code = "+t1.GetHashCode());
   }
}

आउटपुट

यह निम्नलिखित आउटपुट देगा -

Type = System.String
Hash Code = 9144789

उदाहरण

आइए एक और उदाहरण देखें -

using System;
public class Demo {
   enum Vehicle {Car, Bus, Bike, Airplane}
   public static void Main() {
      try {
         Vehicle v = Vehicle.Bike;
         Type type = v.GetType();
         Console.WriteLine("Hash code = "+type.GetHashCode());
         string[] str = type.GetEnumNames();
         Console.WriteLine("GetEnumName() to return the constant name = " + str);
         Type type2 = type.GetEnumUnderlyingType();
         Console.Write("Enum Underlying type = "+type2);
         Array arrObj = type.GetEnumValues();
         Console.Write("Values = "+arrObj);
         Console.WriteLine("\nListing constants ..");
         for (int i = 0; i < str.Length; i++)
            Console.Write("{0} ", str[i]);
      }
      catch (ArgumentException e) {
         Console.WriteLine("Not an enum!");
         Console.Write("{0}", e.GetType(), e.Message);
      }
   }
}

आउटपुट

यह निम्नलिखित आउटपुट देगा -

Hash code = 44757566
GetEnumName() to return the constant name = System.String[]
Enum Underlying type = System.Int32Values = Demo+Vehicle[]
Listing constants ..
Car Bus Bike Airplane

  1. सी # में वर्तमान Int64 उदाहरण के लिए हैश कोड प्राप्त करें

    वर्तमान Int64 उदाहरण के लिए हैश कोड प्राप्त करने के लिए, कोड इस प्रकार है - उदाहरण using System; public class Demo {    public static void Main() {       long val1 = 8768768768;       long val2 = 7889765555;       Console.WriteLine("Value1

  1. सी # में मूल्य प्रकार चार के लिए टाइपकोड प्राप्त करें

    मूल्य प्रकार चार के लिए टाइपकोड प्राप्त करने के लिए, कोड इस प्रकार है - उदाहरण using System; public class Demo {    public static void Main() {       char val = '5';       bool res;       Console.WriteLine("Hashcode for val = "

  1. पायथन में प्रकार की जांच करने का विहित तरीका क्या है?

    यदि आप यह जांचना चाहते हैं कि क्या कोई वस्तु, x बिल्कुल दिए गए प्रकार (उपप्रकार नहीं) का एक उदाहरण है, तो आप इसका प्रकार प्राप्त करने के लिए टाइप का उपयोग कर सकते हैं और कथन का उपयोग करके जांच सकते हैं। उदाहरण x = "Hello" if type(x) is str:    print("x is an instance of str&