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

Java example source code file (T7024096.java)

This example Java source code file (T7024096.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

exception, incorrect, runtimeexception, start, t7024096

The T7024096.java Java example source code

/*
 * @test  /nodynamiccopyright/
 * @bug 7024096
 * @summary Stack trace has invalid line numbers
 * @author Bruce Chapman
 * @compile T7024096.java
 * @run main T7024096
 */

public class T7024096 {
    private static final int START = 14; // starting line number for the test
    public static void main(String[] args) {
        T7024096 m = new T7024096();
        m.nest(START);
        m.nest(START + 1, m.nest(START + 1), m.nest(START + 1),
            m.nest(START + 2),
            m.nest(START + 3, m.nest(START + 3)));
    }

    public T7024096 nest(int expectedline, T7024096... args) {
        Exception e = new Exception("expected line#: " + expectedline);
        int myline = e.getStackTrace()[1].getLineNumber();
        if( myline != expectedline) {
            throw new RuntimeException("Incorrect line number " +
                    "expected: " + expectedline +
                    ", got: " + myline, e);
        }
        System.out.format("Got expected line number %d correct %n", myline);
        return null;
    }
}

Other Java examples (source code examples)

Here is a short list of links related to this Java T7024096.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.