Eclipse 有没有快捷键知道接口文件中的接口时谁实现了它?
比如:已知如下接口文件中的接口
public interface LoginService {
public int loginCheck(LoginForm loginForm)throws Exception;
public List ishave_user(String username)throws Exception;
public boolean register(String username,String password,String email)throws Exception;
public int is_occupied(String username) throws Exception;
public List allUser() throws Exception;
public boolean deleteByUserId(int userid) throws Exception;
}
我用快捷键就立刻找到实现类。
------解决思路----------------------
直接F4。。。。。
------解决思路----------------------
多自己查查,百度下。ctrl+t