| Author |
PLEASE IT IS URGENT
|
raghu nagabandi
Ranch Hand
Joined: Aug 14, 2007
Posts: 35
|
|
how to find method names of a class? but i have only x.java file, i don't have x.class file. plaese don't use reflection packege(it needs .class file)
|
 |
P Ventura
Ranch Hand
Joined: Jan 24, 2007
Posts: 42
|
|
|
x.java is the source file, so you can find methods there.
|
Objective: SCJP 1.5<br /><a href="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Thread.html" target="_blank" rel="nofollow">API</a><br /> <blockquote><font size="1" face="Verdana, Arial">code:</font><hr><pre><font size="2"><br />Double n1 = Double.NaN; Double n2 = Double.NaN;<br /> n1.equals(n2) // true even though Double.NaN != Double.NaN<br />-0.0 == +0.0; // true<br />Double n1 = -0.0;Double n2 = +0.0;<br />n1.equals(n2) // false even though -0.0 == +0.0<br /></font></pre><hr></blockquote>
|
 |
Jesper de Jong
Java Cowboy
Bartender
Joined: Aug 16, 2005
Posts: 12929
|
|
|
About the title of your post: EaseUp and UseAMeaningfulSubjectLine.
|
Java Beginners FAQ - JavaRanch SCJP FAQ - The Java Tutorial - Java SE 7 API documentation
Scala Notes - My blog about Scala
|
 |
 |
|
|
subject: PLEASE IT IS URGENT
|
|
|