c#串口程序接收数据并打印_C#程序可打印各种数据类型的大小
生活随笔
收集整理的這篇文章主要介紹了
c#串口程序接收数据并打印_C#程序可打印各种数据类型的大小
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
c#串口程序接收數據并打印
In this C# program – we are going to print size of various data types, to print size of a type, we use sizeof() operator.
在此C#程序中–我們將打印各種數據類型的大小,并使用typeof()運算符打印類型的大小。
It accepts a data type and returns its size in the memory.
它接受數據類型并在內存中返回其大小。
Example:
例:
// C# program to C# program to print // size of various data types using System; using System.IO; using System.Text;namespace IncludeHelp {class Test{// Main Method static void Main(string[] args){Console.WriteLine("sizeof(int): {0}", sizeof(int));Console.WriteLine("sizeof(float): {0}", sizeof(float));Console.WriteLine("sizeof(char): {0}", sizeof(char));Console.WriteLine("sizeof(double): {0}", sizeof(double));Console.WriteLine("sizeof(bool): {0}", sizeof(bool));//hit ENTER to exit the programConsole.ReadLine();}} }Output
輸出量
sizeof(int): 4 sizeof(float): 4 sizeof(char): 2 sizeof(double): 8 sizeof(bool): 1翻譯自: https://www.includehelp.com/dot-net/print-size-of-various-data-types-in-c-sharp.aspx
c#串口程序接收數據并打印
總結
以上是生活随笔為你收集整理的c#串口程序接收数据并打印_C#程序可打印各种数据类型的大小的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 50行代码,搞定敏感数据读写!
- 下一篇: Java SecurityManager