, , . . . , , , .
javac . Eclipse, , . , , .
-, , , . , , .
, , . ,
static int test(int a, int b, int c, int d) {
return
a
+b
+c
+d;
}
, return.
static int test(int a, int b, int c, int d) {
return
a
+b
+c+test(a,b,c,d)
+d;
}
, return . , .
static int test(int a, int b, int c, int d) {
return
a
+b+test(a,b,c,d)
+c
+d+test(a,b,c,d);
}
javac.