javainthinking

Greenhorn
+ Follow
since Dec 01, 2004
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by javainthinking

It's a test example below:

public class Test
{

public static void main(String[] args)
{
String s1="love",
s2="like";
System.out.println(s1==s2);
System.out.println(""+(s1==s2));
}
}

run java Test,the answer both are false except the second having a space aditonal.
19 years ago
Yes.
It's must follow the format below:
class implements class1,class2,...class n [extens classA](optional).

But you can't write like this below:
class extens classA,classB,classC.....

[ December 16, 2004: Message edited by: javainthinking ]
19 years ago
JDK
The offline installation is just a part of the online installation.It have others files that is unuseful for you now!
19 years ago
Just do it yourself?^_※!
19 years ago