Andy's blog

If you always do what you've always done, you'll always get what you've always got.

0%

2020-10-26-.Net 型別詳細介紹

今天認識整數型別、浮點數、後製字元、列舉


參考資料:
從零開始學Visual C#2015程式設計


整數型別

  1. short System.16
  2. int System.32
  3. long System.64

浮點數

  1. float System.Single 精準7位數
  2. double System.Double 精準14~15位數
  3. decimal System.64 精準28~29位數

後製字元

我們在宣告像是float、decimal型態時,必須加上後置字元。
因為編譯器會將實數(含有小數)都視為double處理
正確示範:

1
2
float a = 1.2222222f
decimal b =1.11111111111111111111111111111M

參考資料:C# 變數型別 : int, float, double, decimal

列舉

寫法

1
2
3
4
5
6
7
     //變數名稱  //型態(只能為這四種:byte short int long)
enum Location:int
{
east =1 ,
north =2,
}