CodeMsg類的定義及好處

2021-08-21 11:20:43 字數 668 閱讀 2883

** codemsg 

用於儲存 異常碼和異常資訊,由於失敗沒有資料返回**/

public class codemsg

public int

getcode()

public string getmsg()

/**

該方法用於返回乙個

codemsg

物件 便於 全域性異常處理的呼叫

* 全域性異常處理傳入

objects

引數,並返回乙個

codemsg

物件*

該方法根據入參 顯示 對應的異常

code ,

以及加入 異常資訊的

msg顯示

* */

/*利用可變長引數定義 :適用於 引數型別可知,但是個數未知的情況

*/public codemsg fillargs(object...objects)

紀要:codemsg類 用於封裝錯誤資訊,錯誤資訊碼。

當邏輯發生錯誤時候,或者不符合業務需求的時候,返回error,error中傳入的codemsg物件在此處定義,並且將所有的錯誤或者業務異常模組都定義在這個類中,按照模組來定義異常,

模組:通用模組,登陸模組,商品模組,秒殺模組,訂單模組。。。。通過code來區分。

類的定義及使用

class people 幫助息 xx00x 所有例項都會共享 number 100 def init self,name,age 建構函式,初始化的方法,當建立乙個類的時候,首先會呼叫它 self.name name self.age age def display self print numb...

自動載入類的好處

現有乙個類 usermodel.class.php class usermodel public function logout 另乙個php檔案想要使用該類,需要把該類檔案載入進來。require property.class.php user new usermodel user login 這...

swift 類的定義及使用

main.swift classdemo 06 import foundation println hello,world 類的定義 person 名字 class person 這個構造方法帶兩個引數 name age init name string,age int deinit func ge...