Java <-> Visual Basic .NET | Explicit conversion to 64-bit real number
Java  
explicit conversion to 64-bit real number
Description
( type ) expressionInput
- type - 64-bit real number
 - expression - Expressions
 
Output
- return - 64-bit real number
 
Examples
Java
Explicit conversion to 64-bit real number the possible of use:double x = 3.14159265359;     // x = 3.14159265359
double y = 123456789;         // y = 123456789.0
y =(double)(x * y);          // y = 387850941.35821074.
Visual Basic .NET  Used keywords: cdbl 
CDbl
Description
 CDbl (expr)Input
- expr - Any
 
Output
- return - 64-bit real number
 
Examples
Visual Basic .NET
Explicit conversion to 64-bit real number the possible of use:Dim x As double= 3.14159265359     ' x = 3.14159265359
Dim y As double= 123456789         ' y = 123456789.0
y =CDbl((x * y))          ' y = 387850941.35821074You can find it in the following collections: explicit type conversions
Explicit conversion to 64-bit real number in another programming language:
Differences to: