English 中文(简体)
有多少大人能够签署64个字典?
原标题:How big can a 64bit signed integer be?
最佳回答

This article is good for more information about this topic: http://en.wikipedia.org/wiki/Integer_(computer_science)

So the answer to the question should be: From -9,223,372,036,854,775,808 to 9,223,372,036,854,775,807, or from −(2^63) to 2^63 − 1

储存在已签字的胎盘上的最高正数是双亲。

<>->----63>

0111111111111111111111111111111111111111111111111111111111111111

If you think carefully you can find out that this number is exactly 2^63 - 1.

问题回答

签字的分类范围从尺寸——2^(n-1)到2^(n-1)——在这种情况下,最高值为2^ 63 - 1或9 223,372,036,854,775,807

    Formula   

    2^(n-1) is the formula of the maximum value of a Bigint data type.

    In the preceding formula N is the size of the data type. The ^ operator calculates the power of the value.

    Now determine the value of N in Bit:

Select (max_length * 8) as  Bit(s)  from sys.types Where name =  BIGInt 
=64 Bits

范围:-9223372036854775808至9223372036854775807





相关问题
System Architecture

How do I determine whether the currently running Mac OS X system is of 32bit or 64bit machine?

Starting Assembly

I m new to assembly language, and would like to learn. I have Vista-64 (will be upgraded to Windows 7 64), and I will soon be reinstalling 32-bit Linux, but I will end up programming on both systems, ...

Does a 64-bit CruiseControl.NET exist?

Does a 64-bit CruiseControl.NET exist or do I need to install the 32-bit version? Our CI server is Server2003 64-bit. Currently I have been testing on WinXP Pro and no problems. If I do need to run ...

32bit application access to 64bit registry

I have an OS Shell written in 32bit that is replacing the Explorer.exe of a Vista machine. I run a utility which is also written in 32bit, which allows to switch between the Explorer shell and My ...

热门标签