-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathCastTest.java
More file actions
79 lines (63 loc) Β· 1.38 KB
/
CastTest.java
File metadata and controls
79 lines (63 loc) Β· 1.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
class CastTest
{
/** Integers */
public static short testIntToShort(int value)
{
return (short) value;
}
public static double testIntToDouble(int value)
{
return (double) value;
}
public static float testIntToFloat(int value)
{
return (float) value;
}
public static byte testIntToByte(int value)
{
return (byte) value;
}
public static char testIntToChar(int value)
{
return (char) value;
}
/** Longs */
public static double testLongToDouble(long value)
{
return (double) value;
}
public static float testLongToFloat(long value)
{
return (float) value;
}
public static int testLongToInt(long value)
{
return (int) value;
}
/** Doubles */
public static float testDoubleToFloat(double value)
{
return (float) value;
}
public static int testDoubleToInt(double value)
{
return (int) value;
}
public static long testDoubleToLong(double value)
{
return (long) value;
}
/** Floats */
public static double testFloatToDouble(float value)
{
return (double) value;
}
public static int testFloatToInt(float value)
{
return (int) value;
}
public static long testFloatToLong(float value)
{
return (long) value;
}
}