|
Java example source code file (Different_RedefineSubTarg.java)
The Different_RedefineSubTarg.java Java example source code
/* /nodynamiccopyright/ */ class RedefineSubTarg { // 1 - do not change line numbers
// add two lines
// to check line number tables
void top() {
return; // 5
}
void nemcp2(int eights) {
eights = 88;
top(); // 9
}
void nemcp1() {
// reserve this line
nemcp2(888); // 13
}
void emcp2() {
nemcp1(); // 16
return; // 17
}
void emcp1(int whoseArg) {
int parawham = 12;
emcp2(); // 21
return; // 22
}
void bottom() {
emcp1(56); // 25
return; // 26
}
static void stnemcp() {
(new RedefineSubTarg()).bottom(); // 29
// 30
Integer.toString(4);
}
static void stemcp() {
stnemcp(); // 34
return; // 35
}
}
Other Java examples (source code examples)Here is a short list of links related to this Java Different_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.