Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  1. public class Statics {
  2. public static Integer I = new Integer(1 +0);
  3. public static byte b = (byte) 1 +0 ;
  4. public static short s = (short) 1 +0 ;
  5. public static int i = (int) 1 +0 ;
  6. public static long l = (long) 1 +0 ;
  7. public static float f = (float) 1 +0 ;
  8. public static double d = (double) 1 +0 ;
  9. public static char c = (char) '1'+0 ;
  10. public static class NestedStaticClass {
  11. public static Integer I = new Integer(2 +0);
  12. public static byte b = (byte) 2 +0 ;
  13. public static short s = (short) 2 +0 ;
  14. public static int i = (int) 2 +0 ;
  15. public static long l = (long) 2 +0 ;
  16. public static float f = (float) 2 +0 ;
  17. public static double d = (double) 2 +0 ;
  18. public static char c = (char) '2'+0 ;
  19. public static class InnerStaticClass {
  20. public static Integer I = new Integer(3 +0);
  21. public static byte b = (byte) 3 +0 ;
  22. public static short s = (short) 3 +0 ;
  23. public static int i = (int) 3 +0 ;
  24. public static long l = (long) 3 +0 ;
  25. public static float f = (float) 3 +0 ;
  26. public static double d = (double) 3 +0 ;
  27. public static char c = (char) '3'+0 ;
  28. }
  29. public static interface InnerStaticInterface {
  30. public static Integer I = new Integer(4 +0);
  31. public static byte b = (byte) 4 +0 ;
  32. public static short s = (short) 4 +0 ;
  33. public static int i = (int) 4 +0 ;
  34. public static long l = (long) 4 +0 ;
  35. public static float f = (float) 4 +0 ;
  36. public static double d = (double) 4 +0 ;
  37. public static char c = (char) '4'+0 ;
  38. }
  39. public interface InnerInterface {
  40. public static Integer I = new Integer(5 +0);
  41. public static byte b = (byte) 5 +0 ;
  42. public static short s = (short) 5 +0 ;
  43. public static int i = (int) 5 +0 ;
  44. public static long l = (long) 5 +0 ;
  45. public static float f = (float) 5 +0 ;
  46. public static double d = (double) 5 +0 ;
  47. public static char c = (char) '5'+0 ;
  48. }
  49. public static interface InnerStaticInterfaceNoStatics {
  50. public Integer I = new Integer(6 +0);
  51. public byte b = (byte) 6 +0 ;
  52. public short s = (short) 6 +0 ;
  53. public int i = (int) 6 +0 ;
  54. public long l = (long) 6 +0 ;
  55. public float f = (float) 6 +0 ;
  56. public double d = (double) 6 +0 ;
  57. public char c = (char) '6'+0 ;
  58. }
  59. public interface InnerInterfaceNoStatics {
  60. public Integer I = new Integer(7 +0);
  61. public byte b = (byte) 7 +0 ;
  62. public short s = (short) 7 +0 ;
  63. public int i = (int) 7 +0 ;
  64. public long l = (long) 7 +0 ;
  65. public float f = (float) 7 +0 ;
  66. public double d = (double) 7 +0 ;
  67. public char c = (char) '7'+0 ;
  68. }
  69. }
  70. public static interface NestedStaticInterface {
  71. public static Integer I = new Integer(2 +10);
  72. public static byte b = (byte) 2 +10 ;
  73. public static short s = (short) 2 +10 ;
  74. public static int i = (int) 2 +10 ;
  75. public static long l = (long) 2 +10 ;
  76. public static float f = (float) 2 +10 ;
  77. public static double d = (double) 2 +10 ;
  78. public static char c = (char) '2'+10 ;
  79. public static class InnerStaticClass {
  80. public static Integer I = new Integer(3 +10);
  81. public static byte b = (byte) 3 +10 ;
  82. public static short s = (short) 3 +10 ;
  83. public static int i = (int) 3 +10 ;
  84. public static long l = (long) 3 +10 ;
  85. public static float f = (float) 3 +10 ;
  86. public static double d = (double) 3 +10 ;
  87. public static char c = (char) '3'+10 ;
  88. }
  89. public static interface InnerStaticInterface {
  90. public static Integer I = new Integer(4 +10);
  91. public static byte b = (byte) 4 +10 ;
  92. public static short s = (short) 4 +10 ;
  93. public static int i = (int) 4 +10 ;
  94. public static long l = (long) 4 +10 ;
  95. public static float f = (float) 4 +10 ;
  96. public static double d = (double) 4 +10 ;
  97. public static char c = (char) '4'+10 ;
  98. }
  99. public interface InnerInterface {
  100. public static Integer I = new Integer(5 +10);
  101. public static byte b = (byte) 5 +10 ;
  102. public static short s = (short) 5 +10 ;
  103. public static int i = (int) 5 +10 ;
  104. public static long l = (long) 5 +10 ;
  105. public static float f = (float) 5 +10 ;
  106. public static double d = (double) 5 +10 ;
  107. public static char c = (char) '5'+10 ;
  108. }
  109. public static interface InnerStaticInterfaceNoStatics {
  110. public Integer I = new Integer(6 +10);
  111. public byte b = (byte) 6 +10 ;
  112. public short s = (short) 6 +10 ;
  113. public int i = (int) 6 +10 ;
  114. public long l = (long) 6 +10 ;
  115. public float f = (float) 6 +10 ;
  116. public double d = (double) 6 +10 ;
  117. public char c = (char) '6'+10 ;
  118. }
  119. public interface InnerInterfaceNoStatics {
  120. public Integer I = new Integer(7 +10);
  121. public byte b = (byte) 7 +10 ;
  122. public short s = (short) 7 +10 ;
  123. public int i = (int) 7 +10 ;
  124. public long l = (long) 7 +10 ;
  125. public float f = (float) 7 +10 ;
  126. public double d = (double) 7 +10 ;
  127. public char c = (char) '7'+10 ;
  128. }
  129. }
  130. public interface NestedInterface {
  131. public static Integer I = new Integer(2 +20);
  132. public static byte b = (byte) 2 +20 ;
  133. public static short s = (short) 2 +20 ;
  134. public static int i = (int) 2 +20 ;
  135. public static long l = (long) 2 +20 ;
  136. public static float f = (float) 2 +20 ;
  137. public static double d = (double) 2 +20 ;
  138. public static char c = (char) '2'+20 ;
  139. public static class InnerStaticClass {
  140. public static Integer I = new Integer(3 +20);
  141. public static byte b = (byte) 3 +20 ;
  142. public static short s = (short) 3 +20 ;
  143. public static int i = (int) 3 +20 ;
  144. public static long l = (long) 3 +20 ;
  145. public static float f = (float) 3 +20 ;
  146. public static double d = (double) 3 +20 ;
  147. public static char c = (char) '3'+20 ;
  148. }
  149. public static interface InnerStaticInterface {
  150. public static Integer I = new Integer(4 +20);
  151. public static byte b = (byte) 4 +20 ;
  152. public static short s = (short) 4 +20 ;
  153. public static int i = (int) 4 +20 ;
  154. public static long l = (long) 4 +20 ;
  155. public static float f = (float) 4 +20 ;
  156. public static double d = (double) 4 +20 ;
  157. public static char c = (char) '4'+20 ;
  158. }
  159. public interface InnerInterface {
  160. public static Integer I = new Integer(5 +20);
  161. public static byte b = (byte) 5 +20 ;
  162. public static short s = (short) 5 +20 ;
  163. public static int i = (int) 5 +20 ;
  164. public static long l = (long) 5 +20 ;
  165. public static float f = (float) 5 +20 ;
  166. public static double d = (double) 5 +20 ;
  167. public static char c = (char) '5'+20 ;
  168. }
  169. public static interface InnerStaticInterfaceNoStatics {
  170. public Integer I = new Integer(6 +20);
  171. public byte b = (byte) 6 +20 ;
  172. public short s = (short) 6 +20 ;
  173. public int i = (int) 6 +20 ;
  174. public long l = (long) 6 +20 ;
  175. public float f = (float) 6 +20 ;
  176. public double d = (double) 6 +20 ;
  177. public char c = (char) '6'+20 ;
  178. }
  179. public interface InnerInterfaceNoStatics {
  180. public Integer I = new Integer(7 +20);
  181. public byte b = (byte) 7 +20 ;
  182. public short s = (short) 7 +20 ;
  183. public int i = (int) 7 +20 ;
  184. public long l = (long) 7 +20 ;
  185. public float f = (float) 7 +20 ;
  186. public double d = (double) 7 +20 ;
  187. public char c = (char) '7'+20 ;
  188. }
  189. }
  190. }