热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

SByte类型在C#中的GetHashCode方法及示例

本文介绍了在C#中SByte类型的GetHashCode方法,该方法用于获取当前SByte实例的HashCode。给出了该方法的语法和返回值,并提供了一个示例程序演示了该方法的使用。

SByte。C# 中的 GetHashCode 方法及示例

原文:https://www . geesforgeks . org/sbyte-gethashcode-method-in-c-sharp-with-examples/

SByte。GetHashCode 方法用于获取当前 SByte 实例的 HashCode。

语法:public override int GetHashCode();

返回值:这个方法返回一个 32 位有符号整数哈希码。

以下程序说明了上述方法的使用:

例 1:

// C# program to illustrate the
// SByte.GetHashCode() Method
using System;
class GFG {
    // Main Method
    public static void Main()
    {
        // Taking SByte variable
        sbyte val = 23;
        // Getting the hash code for SByte
        // using GetHashCode() method
        int result = val.GetHashCode();
        // Display the hashcode
        Console.WriteLine("HashCode for SByte is: {0}",
                                               result);
    }
}

Output:

HashCode for SByte is: 5911

例 2:

// C# program to illustrate the
// SByte.GetHashCode() Method
using System;
class GFG {
    // Main Method
    public static void Main()
    {
        // using result() Method
        result(SByte.MinValue);
        result(SByte.MaxValue);
    }
    // result() method
    public static void result(sbyte val)
    {
        // using GetHashCode() method
        int code = val.GetHashCode();
        // Display the hashcode
        Console.WriteLine("HashCode for {0} is {1}",
                                         val, code);
    }
}

Output:

HashCode for -128 is 32640
HashCode for 127 is 32639

参考:


  • https://docs . Microsoft . com/en-us/dotnet/API/system . sbyte . gethashcode?view=netcore-2.1


推荐阅读
author-avatar
小永远佳瞳_186
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有