Int64, Integer64, Large Data Type

Purpose

A 64 bit signed integral value.

Syntax

Dim name As Int64 | Integer64 | Large

Description

This type does not have type declaration character.

Int64, Integer64 and Large are keywords for a 64-bits signed integer.

Range: -9223372036854775808 to 9223372036854775807

Defined constants:

_maxLarge = 9223372036854775807

_minLarge = -9223372036854775808

Arithmetic operations are faster with integral types than with other data types. They are fastest with the 32-bit Integer types.

Example

Dim d As Large = 2

Local Int64 d1

See Also

Boolean, Byte, Card, Short, Word, Int16, Long, Int, Integer, Int32, Int64, Large, Single, Double, Currency, Date, Handle, String, Variant, Object

{Created by Sjouke Hamstra; Last updated: 10/10/2014 by James Gaite}