Visual C++ .NET <-> Java | Automatic variable declaration

Visual C++ .NET

automatic variable declaration

Description

type name =init_value;
type name =init_value , name = init_value;
Used keywords: =
Data:
  • name -

Input

Examples

Visual C++ .NET

Automatic variable declaration the possible of use:
xmin = -128; ymax = 127;
signed char x= -5;           // x = -5
signed char y = -(15 % 4);   // y = -3
y = (signed char)(x * y);    // z = 15
.
Java

automatic variable declaration

Description

type name =init_value;
type name =init_value , name = init_value;
Used keywords: =
Data:
  • name -

Input

Examples

Java

Automatic variable declaration the possible of use:
xmin = -128; ymax = 127;
byte x= -5;           // x = -5
byte y = -(15 % 4);   // y = -3
y = (byte)(x * y);    // z = 15
Automatic variable declaration in another programming language:
Differences to:
Languages: en hu cz sk