A list of Java errors and warnings

2019-06-25 23:38发布

Where/How could I get a list of all the java and javac's error and warning messages?

标签: java warnings
5条回答
淡お忘
2楼-- · 2019-06-25 23:52

Do you mean Java Exception?

http://java.sun.com/j2se/1.4.2/docs/api/java/lang/Exception.html

This is a list of every exception that Java will at run-time. If you are refering to syntax errors you maybe look at learning Java

查看更多
女痞
3楼-- · 2019-06-26 00:01

This list of exceptions is much more interesting than any of the above answers.

It might not be as useful or as complete, but it's good reading nonetheless.

查看更多
Animai°情兽
4楼-- · 2019-06-26 00:08

This page is I think what you need.

查看更多
Root(大扎)
5楼-- · 2019-06-26 00:16

You could look through the source code, since it's open source.

But more importantly - I can't think of a single reason why you'd want to do this. What's your real question here; what are you trying to achieve? It's almost certain you're going about it in a suboptimal fashion...

查看更多
Animai°情兽
6楼-- · 2019-06-26 00:17

mindprod.com has a Java Glossary with runtime and compile time lists:

http://mindprod.com/jgloss/errormessages.html

Hope that helps

查看更多
登录 后发表回答