首页 > > 详细

辅导java LookupInterface 编程、java 语言程序讲解留学生、讲解java 编程

/**
* Your implementation of the LookupInterface. The only public methods
* in this class should be the ones that implement the interface. You
* should write as many other private methods as needed. Of course, you
* should also have a public constructor.
*
* @author // TODO: Add your name here
*/


public class StudentLookup implements LookupInterface {

public StudentLookup() {

}
@Override
public void addString(int amount, String s) {

}
@Override
public int lookupCount(String s) {
return 0;
}
@Override
public String lookupPopularity(int n) {
return null;
}
@Override
public int numEntries() {
return 0;
}

}
 

联系我们
  • QQ:99515681
  • 邮箱:99515681@qq.com
  • 工作时间:8:00-21:00
  • 微信:codinghelp
热点标签

联系我们 - QQ: 99515681 微信:codinghelp
程序辅导网!