2&10&16进制互转

作者:追风剑情 发布于:2017-11-1 14:57 分类:C#

示例

  1. using System;
  2. using System.Collections.Generic;
  3.  
  4. namespace HexTest
  5. {
  6. class Program
  7. {
  8. static void Main(string[] args)
  9. {
  10. int num = 255;
  11. Console.WriteLine("Decimal={0}, Hex8={1}, Hex24={2}, Hex32={3}", num,
  12. DecimalToHex8(num), DecimalToHex24(num), DecimalToHex32(num));
  13. Console.WriteLine("IntToBinary: {0}", IntToBinary(num));
  14. Console.WriteLine("HexToDecimal: {0}", HexToDecimal("FF0000"));
  15.  
  16. Console.ReadLine();
  17. }
  18.  
  19. public static string IntToBinary(int val, int bits=32)
  20. {
  21. string final = "";
  22.  
  23. for (int i = bits; i > 0; )
  24. {
  25. if (i == 8 || i == 16 || i == 24) final += " ";
  26. final += ((val & (1 << --i)) != 0) ? '1' : '0';
  27. }
  28. return final;
  29. }
  30.  
  31. public static string DecimalToHex8(int num)
  32. {
  33. num &= 0xFF;
  34. return num.ToString("X2");
  35. }
  36.  
  37. public static string DecimalToHex24(int num)
  38. {
  39. num &= 0xFFFFFF;
  40. return num.ToString("X6");
  41. }
  42.  
  43. public static string DecimalToHex32 (int num)
  44. {
  45. return num.ToString("X8");
  46. }
  47.  
  48. public static int HexToDecimal(string hex)
  49. {
  50. return Convert.ToInt32(hex, 16);
  51. }
  52.  
  53. public static int HexToDecimal(char ch)
  54. {
  55. switch (ch)
  56. {
  57. case '0': return 0x0;
  58. case '1': return 0x1;
  59. case '2': return 0x2;
  60. case '3': return 0x3;
  61. case '4': return 0x4;
  62. case '5': return 0x5;
  63. case '6': return 0x6;
  64. case '7': return 0x7;
  65. case '8': return 0x8;
  66. case '9': return 0x9;
  67. case 'a':
  68. case 'A': return 0xA;
  69. case 'b':
  70. case 'B': return 0xB;
  71. case 'c':
  72. case 'C': return 0xC;
  73. case 'd':
  74. case 'D': return 0xD;
  75. case 'e':
  76. case 'E': return 0xE;
  77. case 'f':
  78. case 'F': return 0xF;
  79. }
  80. return 0xF;
  81. }
  82. }
  83. }

测试

1111.png

标签: C#

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号