HOW TO:在變數中保留整數
更新:2007 年 11 月
「整數」(Integer) 是一個整數,可以包括正整數、零和負整數。如果您將變數宣告為型別 Integer,該變數就會保留整數。Integer 資料型別 (Visual Basic) 可以保留 -2,147,483,648 到 2,147,483,647 的整數。
您也可以使用 LONG 資料型別 (Visual Basic)、Short 資料型別 (Visual Basic) 或 SByte 資料型別 (Visual Basic) 來保留整數。如需詳細資訊,請參閱數字資料型別。
在變數中保留整數
使用 Dim 陳述式 (Visual Basic) 來宣告變數。
在變數名稱之後加上 As 子句。
在 As 關鍵字之後,加上 Integer 關鍵字。
Dim students As Integer