在同一个package中,不要import.如果不在同一个package中需要import.格式如下:test1.java;package cn.com;  //自定义的import.
public class test1
{
}package dl.ln;import cn.com.test1;//你要的import;public class test2
{
public test2()
{
test1 t = new test1();
}
}