I have a question.

Would it be possible, hypthetically, in Java, to throw a running thread as exception? I know this is madness, but just for fun, could it be done? Something along the lines of:

public void throwThread() throws ExceptableThread {
    ExceptableThread thread = new ExceptableThread();
    thread.start();
    throw thread;

Implementing Runnable as interface is not really an option. It should throw the actual thread object.

link|improve this question
since it's not the actual effect of throwing an exception you care about, you can rewrite the question as "can i do mutiple inheritance in java?" – soulcheck Nov 22 '11 at 13:15
Well... no... it's not about multiple inheritance in Java, it's about throwing a thread. @Jon Skeet answered my question pretty much perfectly. It was just about the possibility. – Florian H. Nov 22 '11 at 13:17
if you could have a class which is both Throwable and Thread then you could probably throw it without problems. That's why i asked about wrapping it in Throwable, it could result in the same and is permitted by language – soulcheck Nov 22 '11 at 13:20
I just tried rewriting the Thread class. I would have to alter the whole Native Interface between the OS and the JVM to make my Thread extends Throwable work... So... I take this as a no. – Florian H. Nov 22 '11 at 13:31
1  
I have found that the best way to get an answer to "can I do <some crazy thing>" is to try and do it. – Jim Kiley Nov 22 '11 at 17:12
feedback

3 Answers

up vote 7 down vote accepted

No, it wouldn't. Thread doesn't extend Throwable, so you can't throw it.

Even if it were possible, it would be a horrible conflation of two very separate responsibilities, IMO.

link|improve this answer
Yes, it would be horrible. I wouldn't do it. I just wanted to know, if it is some how possible... I was just trying to find the most madness in a concept. Throwing a thread as a RuntimeException or Error was about the most idiotic and maddest idea I could come up with. – Florian H. Nov 22 '11 at 13:03
Couldn't he wrap the tread in Throwable then? edit: i know it's not what he's asking for, but probably would mean the same thing. – soulcheck Nov 22 '11 at 13:07
@soulcheck: You could wrap it in some form, yes - but then you wouldn't be throwing the thread. – Jon Skeet Nov 22 '11 at 13:10
@JonSkeet yeah, I was just wondering what he would accomplish throwing a thread that he couldn't accomplish by wrapping it in throwable apart from actually throwing a thread :) – soulcheck Nov 22 '11 at 13:12
@soulcheck I am not trying to accomplish anything. It's just a hyptothetical question. I am NOT going to use this in actual code. It's just a question about the language internals, and why, if it is possible, it is possible. – Florian H. Nov 22 '11 at 13:15
feedback

You can throw an exception with contains a Thread - weird things _

link|improve this answer
That is just not what I want. Extending Throwable or Exception and implementing Runnable is just not the right thing. Custom exceptions holding a thread object is also not what I want, I want to throw a Thread. A Thread object. ^^ Yes. This is madness. – Florian H. Nov 22 '11 at 13:05
feedback

You can only throw Throwables.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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