程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> shh2-SSH2整合的時候,service層裡面的每個接口方法都要加abstract嗎?

shh2-SSH2整合的時候,service層裡面的每個接口方法都要加abstract嗎?

編輯:編程綜合問答
SSH2整合的時候,service層裡面的每個接口方法都要加abstract嗎?

菜鳥求問
service,業務層裡面的每個接口方法都要變成abstract嗎?

public interface JobSeekerManager {

public abstract boolean checkJsUsernameExists(JobSeeker js) throws Exception;

public abstract boolean checkJsEmailExists(JobSeeker js) throws Exception;

public abstract void add(JobSeeker js) throws Exception;

public List<JobSeeker> getJobSeekers()throws Exception;

public JobSeeker loadByJsId(int jsId) throws Exception;

public boolean login(String email, String password) throws Exception;

public boolean deleteJobSeeker(int jsId) throws Exception;

public boolean update(int jsId, String username, String password,
        String name, String address, String email, String phone,
        int expectedSalary) throws Exception;

}

最佳回答:


這個可以不用的,這與接口的使用有關,接口裡面只有靜態常量和靜態抽象方法,所以在接口裡面定義方法的時候,可以省掉abstract static 關鍵字的,也就是說是
public abstract static int find()和public int find()是等同的

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved