tnblog
首页
视频
资源
登录
没有个性,不需要签名
排名
81
文章
2
粉丝
1
评论
1
ICP备案 :渝ICP备18016597号-1
网站信息:2018-2025TNBLOG.NET
技术交流:群号656732739
联系我们:contact@tnblog.net
公网安备:50010702506256
欢迎加群交流技术

C#中的int、long、float、double等类型都占多少个字节的内存?

6699人阅读 2021/7/21 15:38 总访问:11002 评论:2 收藏:0 手机
分类: dotnet

上测试代码

  1. using System;
  2. public static class Program
  3. {
  4. public static void Main(string[] args)
  5. {
  6. Console.WriteLine("{0}: {1} byte(s) scope:[{2}-{3}]",
  7. typeof(byte).Name.PadLeft(8), sizeof(byte).NumberPad(2),
  8. byte.MinValue.NumberPad(32, true), byte.MaxValue.NumberPad(32));
  9. Console.WriteLine("{0}: {1} byte(s) scope:[{2}-{3}]",
  10. typeof(sbyte).Name.PadLeft(8), sizeof(sbyte).NumberPad(2),
  11. sbyte.MinValue.NumberPad(32, true), sbyte.MaxValue.NumberPad(32));
  12. Console.WriteLine("{0}: {1} byte(s) scope:[{2}-{3}]",
  13. typeof(short).Name.PadLeft(8), sizeof(short).NumberPad(2),
  14. short.MinValue.NumberPad(32, true), short.MaxValue.NumberPad(32));
  15. Console.WriteLine("{0}: {1} byte(s) scope:[{2}-{3}]",
  16. typeof(ushort).Name.PadLeft(8), sizeof(ushort).NumberPad(2),
  17. ushort.MinValue.NumberPad(32, true), ushort.MaxValue.NumberPad(32));
  18. Console.WriteLine("{0}: {1} byte(s) scope:[{2}-{3}]",
  19. typeof(int).Name.PadLeft(8), sizeof(int).NumberPad(2),
  20. int.MinValue.NumberPad(32, true), int.MaxValue.NumberPad(32));
  21. Console.WriteLine("{0}: {1} byte(s) scope:[{2}-{3}]",
  22. typeof(uint).Name.PadLeft(8), sizeof(uint).NumberPad(2),
  23. uint.MinValue.NumberPad(32, true), uint.MaxValue.NumberPad(32));
  24. Console.WriteLine("{0}: {1} byte(s) scope:[{2}-{3}]",
  25. typeof(long).Name.PadLeft(8), sizeof(long).NumberPad(2),
  26. long.MinValue.NumberPad(32, true), long.MaxValue.NumberPad(32));
  27. Console.WriteLine("{0}: {1} byte(s) scope:[{2}-{3}]",
  28. typeof(ulong).Name.PadLeft(8), sizeof(ulong).NumberPad(2),
  29. ulong.MinValue.NumberPad(32, true), ulong.MaxValue.NumberPad(32));
  30. Console.WriteLine("{0}: {1} byte(s) scope:[{2}-{3}]",
  31. typeof(float).Name.PadLeft(8), sizeof(float).NumberPad(2),
  32. float.MinValue.NumberPad(32, true), float.MaxValue.NumberPad(32));
  33. Console.WriteLine("{0}: {1} byte(s) scope:[{2}-{3}]",
  34. typeof(double).Name.PadLeft(8), sizeof(double).NumberPad(2),
  35. double.MinValue.NumberPad(32, true), double.MaxValue.NumberPad(32));
  36. Console.WriteLine("{0}: {1} byte(s) scope:[{2}-{3}]",
  37. typeof(decimal).Name.PadLeft(8), sizeof(decimal).NumberPad(2),
  38. decimal.MinValue.NumberPad(32, true), decimal.MaxValue.NumberPad(32));
  39. Console.WriteLine("{0}: {1} byte(s)",
  40. typeof(bool).Name.PadLeft(8), sizeof(bool).NumberPad(2));
  41. Console.WriteLine("{0}: {1} byte(s)",
  42. typeof(char).Name.PadLeft(8), sizeof(char).NumberPad(2));
  43. Console.WriteLine("{0}: {1} byte(s) ",
  44. typeof(IntPtr).Name.PadLeft(8), IntPtr.Size.NumberPad(2));
  45. Console.ReadLine();
  46. }
  47. public static string NumberPad<T>(this T value, int length, bool right = false)
  48. {
  49. if (right)
  50. {
  51. return value.ToString().PadRight(length);
  52. }
  53. else
  54. {
  55. return value.ToString().PadLeft(length);
  56. }
  57. }
  58. }

结果如下

  1. Byte: 1 byte(s) scope:[0 - 255]
  2. SByte: 1 byte(s) scope:[-128 - 127]
  3. Int16: 2 byte(s) scope:[-32768 - 32767]
  4. UInt16: 2 byte(s) scope:[0 - 65535]
  5. Int32: 4 byte(s) scope:[-2147483648 - 2147483647]
  6. UInt32: 4 byte(s) scope:[0 - 4294967295]
  7. Int64: 8 byte(s) scope:[-9223372036854775808 - 9223372036854775807]
  8. UInt64: 8 byte(s) scope:[0 - 18446744073709551615]
  9. Single: 4 byte(s) scope:[-3.4028235E+38 - 3.4028235E+38]
  10. Double: 8 byte(s) scope:[-1.7976931348623157E+308 - 1.7976931348623157E+308]
  11. Decimal: 16 byte(s) scope:[-79228162514264337593543950335 - 79228162514264337593543950335]
  12. Boolean: 1 byte(s)
  13. Char: 2 byte(s)
  14. IntPtr: 8 byte(s)
评价

剑轩

2021/7/21 17:00:40

顶顶顶!

ylank:@剑轩还是得跟紧剑轩大佬的脚步慢慢学习 嘻嘻

2021/8/8 15:19:49 回复

Css弹性盒子,flex布局

css弹性盒子由于版本不同浏览器问题造成了一些不同的写法display:flexbox;在google浏览器中如果使用下面的写法就不行displa...

Css图片和文字对齐问题

文字和图片写到一排经常会出现对不齐的问题 这样感觉图片会上来一点没有和文字对齐,如下图 但是如果修改下html结...

GitHub 上传项目

补充简化方法:登录git创建项目--&gt;拉取刚刚创建的项目--&gt;复制需要的代码进去--&gt;上传提交即可先拉取项目在上传代码...

NET Core 使用 EF Code First

下面这些内容很老了看这篇:https://www.tnblog.net/aojiancc2/article/details/5365 项目使用多层,把数据库访问...

Windows平台分布式架构实践 - 负载均衡

原文地址: https://www.cnblogs.com/atree/p/windows_loadbalancer.html 概述  最近.NET的世界开始闹腾了,微软官方终...

Css实现简单矩形对话框

在前端做项目时,我们可能会遇到写对话框的需求,这次做视频会议页面就遇到了,记录下日后有个参照。//网页部分 &lt;divcla...

CAPS.NET 保存base64位格式的图片

publicvoidUpload() { //取出图片对应的base64位字符 stringimgBase=Request[&quot;imgBase&quot;]; //c#里边的base6...

使用OLEDB读取不同版本ExCel的连接字符串设置

使用OleBD读取excel的时候,excel不同的版本,连接字符串的写法也会不一样。///&lt;summary&gt; ///读取excel ///&lt;/su...

vs2017 对 COM 组件的调用返回了错误 HRESULT E_FAIL

vs2017添加引用报错 对 COM 组件的调用返回了错误 HRESULT E_FAIL 1.以管理员身份打开vs2017开发人员命令指示符 2...

分布式服务架构与微服务架构概念的区别与联系

分布式:分散压力。微服务:分散能力。当下理解分布式:不同模块部署在不同服务器上作用:分布式解决网站高并发带来问题集...

分布式-微服务-集群的区别

1.分布式将一个大的系统划分为多个业务模块,业务模块分别部署到不同的机器上,各个业务模块之间通过接口进行数据交互。区...

NPOI操作exCel 2007/2010版本

HSSFWorkbook:是操作Excel2003以前(包括2003)的版本,扩展名是.xlsXSSFWorkbook:是操作Excel2007的版本,扩展名是.xlsx先...

这样学英语三个月超过你过去学三年

本文作者三年间从四级勉强及格到高级口译笔试210,口试232。找工作面试时给其口试的老外考官听了一分钟就说你的英语不用考...

EasyUI弹窗批量修改Combogrid下拉框的值

JS方法//点击弹出批量修改框 UpdateLot:function(){ varrow=$(&quot;#dg&quot;).datagrid(&quot;getChecked&quot;); if(...

js与Controller中分割字符串的方法

js: varstr=OpenRule; varstrs=newArray(); strs=str.split(&quot;,&quot;); for(vari=0;i&lt;strs.length;i++){ $(&q...

如何修改CSS中存在的element.style内联样式

改腾讯地图的时候调整了下样式,发现样式一直存在问题,修改style里面的值,一点用都没有,html中这个值还找不到是在哪里出...