snow snow

Greenhorn
+ Follow
since Feb 21, 2003
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 snow snow

just help me ,here is the example :
package a.b;
public class Test1{
public void test(){
System.out.println("hello");
}
}
package a.c;
import a.b.Test1;
public class Test2{
public static void main(String args[]){
Test1 t1= new Test1();
T1.test()
}
}
i have compile Test1.java ---javac -d c:\jdk14\Test Test1.java
how can i complie Test2.java using javac ???
21 years ago