本文讲述了c# ushort_C#中的ushort关键字!具有很好的参考价值,希望对大家有所帮助。一起跟随六星小编过来看看吧,具体如下:
C#ushort关键字 (C# ushort keyword)
In C#, ushort is a keyword which is used to declare a variable that can store an unsigned integer value between the range of 0 to 65,535. ushort keyword is an alias of System.UInt16.
在C#中, ushort是一个关键字,用于声明一个变量,该变量可以存储介于0到65,535之间的无符号整数值。 ushort关键字是System.UInt16的别名。
It occupies 2 bytes (16 bits) space in the memory.
它在内存中占用2个字节(16位)的空间。
Syntax:
句法:
ushort variable_name = value;
C#代码演示ushort关键字示例 (C# code to demonstrate example of ushort keyword)
Here, we are declaring an ushort variable num, initializing it with the value 12345 and printing its value, type and size of an ushort type variable.
在这里,我们宣布一个USHORT变量num,与价值12345初始化它和打印的USHORT类型的变量它的价值,类型和大小。
Output
输出量
更多相关技术内容咨询欢迎前往并持续关注六星社区了解详情。
想高效系统的学习Python编程语言,推荐大家关注一个微信公众号:Python编程学习圈。每天分享行业资讯、技术干货供大家阅读,关注即可免费领取整套Python入门到进阶的学习资料以及教程,感兴趣的小伙伴赶紧行动起来吧。
如果觉得我的文章对您有用,请随意打赏。你的支持将鼓励我继续创作!