alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Java example source code file (RedefineSubTarg.java)

This example Java source code file (RedefineSubTarg.java) is included in the alvinalexander.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Learn more about this Java project at its project page.

Java - Java tags/keywords

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

 

new blog posts

 

Copyright 1998-2021 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.