Conversion.Oct 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
傳回代表數值的八進位值的字串。
多載
Oct(UInt64) |
傳回代表數值的八進位值的字串。 |
Oct(UInt32) |
傳回代表數值的八進位值的字串。 |
Oct(UInt16) |
傳回代表數值的八進位值的字串。 |
Oct(SByte) |
傳回代表數值的八進位值的字串。 |
Oct(Byte) |
傳回代表數值的八進位值的字串。 |
Oct(Int64) |
傳回代表數值的八進位值的字串。 |
Oct(Int32) |
傳回代表數值的八進位值的字串。 |
Oct(Int16) |
傳回代表數值的八進位值的字串。 |
Oct(Object) |
傳回代表數值的八進位值的字串。 |
Oct(UInt64)
傳回代表數值的八進位值的字串。
public:
static System::String ^ Oct(System::UInt64 Number);
[System.CLSCompliant(false)]
public static string Oct (ulong Number);
[<System.CLSCompliant(false)>]
static member Oct : uint64 -> string
Public Function Oct (Number As ULong) As String
參數
- Number
- UInt64
必要。 任何有效的數值運算式或 String
運算式。
傳回
表示數字八進位值的字串。
- 屬性
例外狀況
Number
未指定。
Number
不是數字類型 (Numeric Type)。
範例
此範例會使用函 Oct
式傳回數位的八進位值。
Dim testOct As String
' Returns "4".
testOct = Oct(4)
' Returns "10".
testOct = Oct(8)
' Returns "713".
testOct = Oct(459)
備註
如果 Number
還不是整數,則會在評估之前四捨五入為最接近的整數。
如果 Number 為 | 八月傳回 |
---|---|
空白 | 零 (0) |
任何其他數位 | 最多22個八進位字元 |
您可以使用 ,直接以 適當的範圍 &O
中的前一個數位來表示八進位數位。 例如, &O10
是十進位 8 的八進位表示法。
另請參閱
適用於
Oct(UInt32)
傳回代表數值的八進位值的字串。
public:
static System::String ^ Oct(System::UInt32 Number);
[System.CLSCompliant(false)]
public static string Oct (uint Number);
[<System.CLSCompliant(false)>]
static member Oct : uint32 -> string
Public Function Oct (Number As UInteger) As String
參數
- Number
- UInt32
必要。 任何有效的數值運算式或 String
運算式。
傳回
表示數字八進位值的字串。
- 屬性
例外狀況
Number
未指定。
Number
不是數字類型 (Numeric Type)。
範例
此範例會使用函 Oct
式傳回數位的八進位值。
Dim testOct As String
' Returns "4".
testOct = Oct(4)
' Returns "10".
testOct = Oct(8)
' Returns "713".
testOct = Oct(459)
備註
如果 Number
還不是整數,則會在評估之前四捨五入為最接近的整數。
如果 Number 為 | 八月傳回 |
---|---|
空白 | 零 (0) |
任何其他數位 | 最多22個八進位字元 |
您可以使用 ,直接以 適當的範圍 &O
中的前一個數位來表示八進位數位。 例如, &O10
是十進位 8 的八進位表示法。
另請參閱
適用於
Oct(UInt16)
傳回代表數值的八進位值的字串。
public:
static System::String ^ Oct(System::UInt16 Number);
[System.CLSCompliant(false)]
public static string Oct (ushort Number);
[<System.CLSCompliant(false)>]
static member Oct : uint16 -> string
Public Function Oct (Number As UShort) As String
參數
- Number
- UInt16
必要。 任何有效的數值運算式或 String
運算式。
傳回
表示數字八進位值的字串。
- 屬性
例外狀況
Number
未指定。
Number
不是數字類型 (Numeric Type)。
範例
此範例會使用函 Oct
式傳回數位的八進位值。
Dim testOct As String
' Returns "4".
testOct = Oct(4)
' Returns "10".
testOct = Oct(8)
' Returns "713".
testOct = Oct(459)
備註
如果 Number
還不是整數,則會在評估之前四捨五入為最接近的整數。
如果 Number 為 | 八月傳回 |
---|---|
空白 | 零 (0) |
任何其他數位 | 最多22個八進位字元 |
您可以使用 ,直接以 適當的範圍 &O
中的前一個數位來表示八進位數位。 例如, &O10
是十進位 8 的八進位表示法。
另請參閱
適用於
Oct(SByte)
傳回代表數值的八進位值的字串。
public:
static System::String ^ Oct(System::SByte Number);
[System.CLSCompliant(false)]
public static string Oct (sbyte Number);
[<System.CLSCompliant(false)>]
static member Oct : sbyte -> string
Public Function Oct (Number As SByte) As String
參數
- Number
- SByte
必要。 任何有效的數值運算式或 String
運算式。
傳回
表示數字八進位值的字串。
- 屬性
例外狀況
Number
未指定。
Number
不是數字類型 (Numeric Type)。
範例
此範例會使用函 Oct
式傳回數位的八進位值。
Dim testOct As String
' Returns "4".
testOct = Oct(4)
' Returns "10".
testOct = Oct(8)
' Returns "713".
testOct = Oct(459)
備註
如果 Number
還不是整數,則會在評估之前四捨五入為最接近的整數。
如果 Number 為 | 八月傳回 |
---|---|
空白 | 零 (0) |
任何其他數位 | 最多22個八進位字元 |
您可以使用 ,直接以 適當的範圍 &O
中的前一個數位來表示八進位數位。 例如, &O10
是十進位 8 的八進位表示法。
另請參閱
適用於
Oct(Byte)
傳回代表數值的八進位值的字串。
public:
static System::String ^ Oct(System::Byte Number);
public static string Oct (byte Number);
static member Oct : byte -> string
Public Function Oct (Number As Byte) As String
參數
- Number
- Byte
必要。 任何有效的數值運算式或 String
運算式。
傳回
表示數字八進位值的字串。
例外狀況
Number
未指定。
Number
不是數字類型 (Numeric Type)。
範例
此範例會使用函 Oct
式傳回數位的八進位值。
Dim testOct As String
' Returns "4".
testOct = Oct(4)
' Returns "10".
testOct = Oct(8)
' Returns "713".
testOct = Oct(459)
備註
如果 Number
還不是整數,則會在評估之前四捨五入為最接近的整數。
如果 Number 為 | 八月傳回 |
---|---|
空白 | 零 (0) |
任何其他數位 | 最多22個八進位字元 |
您可以使用 ,直接在適當的範圍 &O
中,使用 來表示八進位數位。 例如, &O10
是十進位 8 的八進位表示法。
另請參閱
適用於
Oct(Int64)
傳回代表數值的八進位值的字串。
public:
static System::String ^ Oct(long Number);
public static string Oct (long Number);
static member Oct : int64 -> string
Public Function Oct (Number As Long) As String
參數
- Number
- Int64
必要。 任何有效的數值運算式或 String
運算式。
傳回
表示數字八進位值的字串。
例外狀況
Number
未指定。
Number
不是數字類型 (Numeric Type)。
範例
這個範例會使用函 Oct
式傳回數位的八進位值。
Dim testOct As String
' Returns "4".
testOct = Oct(4)
' Returns "10".
testOct = Oct(8)
' Returns "713".
testOct = Oct(459)
備註
如果 Number
還不是整數,則會在評估之前四捨五入為最接近的整數。
如果 Number 為 | 八月傳回 |
---|---|
空白 | 零 (0) |
任何其他數位 | 最多22個八進位字元 |
您可以使用 ,直接在適當的範圍 &O
中,使用 來表示八進位數位。 例如, &O10
是十進位 8 的八進位表示法。
另請參閱
適用於
Oct(Int32)
傳回代表數值的八進位值的字串。
public:
static System::String ^ Oct(int Number);
public static string Oct (int Number);
static member Oct : int -> string
Public Function Oct (Number As Integer) As String
參數
- Number
- Int32
必要。 任何有效的數值運算式或 String
運算式。
傳回
表示數字八進位值的字串。
例外狀況
Number
未指定。
Number
不是數字類型 (Numeric Type)。
範例
這個範例會使用函 Oct
式傳回數位的八進位值。
Dim testOct As String
' Returns "4".
testOct = Oct(4)
' Returns "10".
testOct = Oct(8)
' Returns "713".
testOct = Oct(459)
備註
如果 Number
還不是整數,則會在評估之前四捨五入為最接近的整數。
如果 Number 為 | 八月傳回 |
---|---|
空白 | 零 (0) |
任何其他數位 | 最多22個八進位字元 |
您可以使用 ,直接在適當的範圍 &O
中,使用 來表示八進位數位。 例如, &O10
是十進位 8 的八進位表示法。
另請參閱
適用於
Oct(Int16)
傳回代表數值的八進位值的字串。
public:
static System::String ^ Oct(short Number);
public static string Oct (short Number);
static member Oct : int16 -> string
Public Function Oct (Number As Short) As String
參數
- Number
- Int16
必要。 任何有效的數值運算式或 String
運算式。
傳回
表示數字八進位值的字串。
例外狀況
Number
未指定。
Number
不是數字類型 (Numeric Type)。
範例
這個範例會使用函 Oct
式傳回數位的八進位值。
Dim testOct As String
' Returns "4".
testOct = Oct(4)
' Returns "10".
testOct = Oct(8)
' Returns "713".
testOct = Oct(459)
備註
如果 Number
還不是整數,則會在評估之前四捨五入為最接近的整數。
如果 Number 為 | 八月傳回 |
---|---|
空白 | 零 (0) |
任何其他數位 | 最多22個八進位字元 |
您可以使用 ,直接在適當的範圍 &O
中,使用 來表示八進位數位。 例如, &O10
是十進位 8 的八進位表示法。
另請參閱
適用於
Oct(Object)
傳回代表數值的八進位值的字串。
public:
static System::String ^ Oct(System::Object ^ Number);
public static string Oct (object Number);
static member Oct : obj -> string
Public Function Oct (Number As Object) As String
參數
- Number
- Object
必要。 任何有效的數值運算式或 String
運算式。
傳回
表示數字八進位值的字串。
例外狀況
Number
未指定。
Number
不是數字類型 (Numeric Type)。
範例
這個範例會使用函 Oct
式傳回數位的八進位值。
Dim testOct As String
' Returns "4".
testOct = Oct(4)
' Returns "10".
testOct = Oct(8)
' Returns "713".
testOct = Oct(459)
備註
如果 Number
還不是整數,則會在評估之前四捨五入為最接近的整數。
如果 Number 為 | 八月傳回 |
---|---|
空白 | 零 (0) |
任何其他數位 | 最多22個八進位字元 |
您可以使用 ,直接在適當的範圍 &O
中,使用 來表示八進位數位。 例如, &O10
是十進位 8 的八進位表示法。