Possible duplicate: why-is-java-lang-throwable-a-class

Hi! I doesn't understand why Throwable isn't abstract class. I see only one use case for these: in logging systems for figure out call hierarchy. But it can be some static method for this or other class. So, why?)

Thanks.

upd

from java.util.logging.LogRecord

// Get the stack trace.
StackTraceElement stack[] = (new Throwable()).getStackTrace();

Why it can't be Throwable.getStackTrace(); or as in java.lang.Thread

(new Exception()).getStackTrace();

In this way we can avoid throw new Throwable();

upd2 from javadoc

The Throwable class is the superclass of all errors and exceptions in the Java language.

So, as a superclass it should be abstract, imho. Using it for getting stacktrace isn't good case by this definition.

link|improve this question

Where does it ever "throw new Throwable();" ? Not sure you need to avoid something which never happens. ;) – Peter Lawrey Nov 29 '10 at 18:04
@Peter Lawrey : Somebody can write it. API should avoid bad using (not only my IMHO). – Stas Kurilin Nov 29 '10 at 18:11
@Stas, It is highly unlikely to compile accidently as it is checked exception. You have to handle it or add it to the throws clause. I think that is avoidance enough. Not convinced there is a serious problem which needs another solution. – Peter Lawrey Nov 29 '10 at 18:14
@Stas, My IDE also has a warning "Prohibited Exception thrown" This can be changed to a compiler error level. – Peter Lawrey Nov 29 '10 at 18:16
possible duplicate of why is java.lang.Throwable a class? – EJP Nov 30 '10 at 0:39
show 8 more comments
feedback

2 Answers

up vote 3 down vote accepted

I doesn't understand why Throwable isn't abstract class.

The answer is clearly stated here.

Why it can't be Throwable.getStackTrace(); or as in java.lang.Thread

Quite simply, the getStackTrace() calls the getOurStackTrace() method which is non-static. If getStackTrace() was static, so should getOurStackTrace(). This won't happen as printStackTrace() method uses the getOurStackTrace(). This is elaborated in the JavaDoc:

Provides programmatic access to the stack trace information printed by printStackTrace().

Source for java.lang.Throwable:

 public StackTraceElement[] getStackTrace() {
        return (StackTraceElement[]) getOurStackTrace().clone();
    }

Also, if you read the code of getOurStackTrace() method, you'll see it calls the following method:

private native int getStackTraceDepth();

As far as I know, native cannot be static (I may be wrong).

link|improve this answer
Native methods can be static (see pretty much any method in java.lang.StrictMath). – Mark Peters Nov 29 '10 at 18:00
@Mark Peters...thanks...updated – The Elite Gentleman Nov 29 '10 at 18:02
@Peter Lawrey, it's on the Throwable class in the JDK (mine is 1.6.0-21, it was introduced since JDK 4 I believe?) – The Elite Gentleman Nov 29 '10 at 18:05
If native can be static, I think Throwable.getStackTrace() better idea than new Throwable().getStackTrace() – Stas Kurilin Nov 29 '10 at 18:07
1  
@Stas: They would have completely different semantics if it were static. getStackTrace() for a subclass of Throwable is supposed to return the stacktrace at the point that fillInStackTrace() was called, which is at construction of the Throwable typically. Calling it statically would have to return whatever the stacktrace is at the time of the method call which would be much less useful (e.g. it would print the stacktrace to the logging code, not to where the exception occurred). – Mark Peters Nov 29 '10 at 18:10
show 12 more comments
feedback

I use it quite often for logging, so I am glad it isn't abstract. There is a method to get the call stack, Thread.currentThread().getStackTrace() but this returns a StackTraceElement[] which isn't very useful for logging.

EDIT:

StackTraceElement[] stes = Thread.currentThread().getStackTrace();  

Note: this method also works to get a stack trace of another thread which can be handy.

link|improve this answer
Can you show how do you use it? In java.util.logging it used to get StackTraceElement[] "(new Throwable()).getStackTrace();" – Stas Kurilin Nov 29 '10 at 17:30
1  
I don't think making Throwable abstract would really stop you...you could either do new Throwable(){}.printStackTrace() for throwaway logging, or for logging that you keep you should probably be using the cleaner Thread solution anyway (or at least a library method that wraps it). – Mark Peters Nov 29 '10 at 18:14
@Mark, logging StackTraceElement[] is tedious to make readable. You don't want it to be split by other log messages for example. esp another stack trace. – Peter Lawrey Nov 29 '10 at 18:24
fair enough, though for non-throwaway logging I would expect one to be using a logging framework that does all this for you anyway (all logging frameworks I've seen have methods to log a Throwable directly). – Mark Peters Nov 29 '10 at 18:33
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.