1.顯式轉換與隱式轉換
--隱式轉換
--資料型別相容。
--原型別返回必須比目標型別範圍小。
--顯示轉換(強制轉換)
(目標型別)變數 (目標型別)數值
例子:int a;
byte b;
b = (byte)a
2.不同變數型別直接的轉換
--將其他型別轉換成整型
int.parse();
convert.toint16();convert.toint32();convert.toint64();
--將其他型別轉換成字元型
convert.tochar();
變數.tostring();
--將整型轉換成布林型
convert.toboolean();
--將其他型別轉換成浮點型
convert.tosingle();
第四節 陣列(一)
實現三子棋程式 define crt secure no warnings include include include include intmenu define max row 3 define max col 3 void init char chessboard max row max ...
第四節 陣列(二)
實現掃雷程式 define crt secure no warnings include include include include define max row 9 define max col 9 define mine count 10 intmenu void init char sho...
C 第四節課
知識點 三種屬性,using改變許可權,繼承時名字的遮蔽,函式過載的遮蔽問題,派生類的建構函式,多繼承類,命名衝突,虛繼承,多繼承的建構函式,在基類中,基類的public,protected private 成員都是可以訪問的,但是類的物件只能訪問public成員 public繼承 基類的publi...