Endabgabe #20
@ -3,7 +3,7 @@ public class Increment {
|
|||||||
public int test;
|
public int test;
|
||||||
|
|
||||||
public void increment(int p) {
|
public void increment(int p) {
|
||||||
test = p++;
|
this.test = p++;
|
||||||
|
|
||||||
for(int i = 1; i<=10; i++) {
|
for(int i = 1; i<=10; i++) {
|
||||||
int a = 5;
|
int a = 5;
|
||||||
|
@ -3,7 +3,7 @@ class SelfReference {
|
|||||||
SelfReference selfReference;
|
SelfReference selfReference;
|
||||||
|
|
||||||
int testMethod1() {
|
int testMethod1() {
|
||||||
return this.testMethod2();
|
return testMethod2();
|
||||||
}
|
}
|
||||||
|
|
||||||
int testMethod2() {
|
int testMethod2() {
|
||||||
|
Loading…
Reference in New Issue
Block a user