|
Java example source code file (RedefineSubTarg.java)
The RedefineSubTarg.java Java example source code
/* /nodynamiccopyright/ */ class RedefineSubTarg { // 1 - do not change line numbers
void top() {
return; // 3
}
void nemcp2(int eights) {
top(); // 6
return; // 7
}
void nemcp1() {
int rot = 4;
nemcp2(888); // 11
return; // 12
}
void emcp2() {
nemcp1(); // 15
return; // 16
}
void emcp1(int myArg) {
int paramy = 12;
emcp2(); // 20
return; // 21
}
void bottom() {
emcp1(56); // 24
return; // 25
}
static void stnemcp() {
(new RedefineSubTarg()).bottom(); // 28
// 29
return; // 30
}
static void stemcp() {
stnemcp(); // 33
return; // 34
}
}
Other Java examples (source code examples)Here is a short list of links related to this Java RedefineSubTarg.java source code file: |
| ... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.