溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

怎么在Python中自定義用戶異常

發(fā)布時(shí)間:2020-12-28 14:44:06 來(lái)源:億速云 閱讀:267 作者:Leah 欄目:開(kāi)發(fā)技術(shù)

怎么在Python中自定義用戶異常?很多新手對(duì)此不是很清楚,為了幫助大家解決這個(gè)難題,下面小編將為大家詳細(xì)講解,有這方面需求的人可以來(lái)學(xué)習(xí)下,希望你能有所收獲。

實(shí)際開(kāi)發(fā)中,有時(shí)候系統(tǒng)提供的異常類型不能滿足開(kāi)發(fā)的需求。這時(shí)候你可以通過(guò)創(chuàng)建一個(gè)新的異常類來(lái)?yè)碛凶约旱漠惓?。異常類繼承自 Exception 類,可以直接繼承,或者間接繼承。

常見(jiàn)的內(nèi)置異常有:

怎么在Python中自定義用戶異常

1.自定義異常類型

#1.用戶自定義異常類型,只要該類繼承了Exception類即可,至于類的主題內(nèi)容用戶自定義,可參考官方異常類
class TooLongExceptin(Exception):
  "this is user's Exception for check the length of name "
  def __init__(self,leng):
    self.leng = leng
  def __str__(self):
    print("姓名長(zhǎng)度是"+str(self.leng)+",超過(guò)長(zhǎng)度了")

2.如何手動(dòng)拋出異常:raise

系統(tǒng)的自帶的異常只要觸發(fā)會(huì)自動(dòng)拋出,比如NameError,但用戶自定義的異常需要用戶自己決定什么時(shí)候拋出。
raise 唯一的一個(gè)參數(shù)指定了要被拋出的異常。它必須是一個(gè)異常的實(shí)例或者是異常的類(也就是 Exception 的子類)。大多數(shù)的異常的名字都以"Error"結(jié)尾,所以實(shí)際命名時(shí)盡量跟標(biāo)準(zhǔn)的異常命名一樣。

#1.用戶自定義異常類型
class TooLongExceptin(Exception):
  "this is user's Exception for check the length of name "
  def __init__(self,leng):
    self.leng = leng
  def __str__(self):
    print("姓名長(zhǎng)度是"+str(self.leng)+",超過(guò)長(zhǎng)度了")
 
#2.手動(dòng)拋出用戶自定義類型異常
def name_Test():
    name = input("enter your naem:")
    if len(name)>4:
      raise TooLongExceptin(len(name)) #拋出異常很簡(jiǎn)單,使用raise即可,但是沒(méi)有處理,即捕捉
    else :
      print(name)
 
#調(diào)用函數(shù),執(zhí)行
name_Test()
-----------------執(zhí)行時(shí)滿足條件后拋出一個(gè)用戶定義的異常如下:--------------------------------------
enter your naem:是打發(fā)斯蒂芬
Traceback (most recent call last):
姓名長(zhǎng)度是6,超過(guò)長(zhǎng)度了
 File "D:/pythoyworkspace/file_demo/Class_Demo/extion_demo.py", line 21, in <module>
  name_Test()
__main__.TooLongExceptin: <exception str() failed>

3.捕捉用戶手動(dòng)拋出的異常

#1.捕捉用戶手動(dòng)拋出的異常,跟捕捉系統(tǒng)異常方式一樣
def name_Test():
  try:
    name = input("enter your naem:")
    if len(name)>4:
      raise TooLongExceptin(len(name))
    else :
      print(name)
 
  except TooLongExceptin,e_result: #這里異常類型是用戶自定義的
    print("捕捉到異常了")
    print("打印異常信息:",e_result)
 
#調(diào)用函數(shù),執(zhí)行
name_Test()
==========執(zhí)行結(jié)果如下:==================================================
enter your naem:aaafsdf
捕捉到異常了
Traceback (most recent call last):
打印異常信息: 姓名長(zhǎng)度是7,超過(guò)長(zhǎng)度了
姓名長(zhǎng)度是7,超過(guò)長(zhǎng)度了
 File "D:/pythoyworkspace/file_demo/Class_Demo/extion_demo.py", line 16, in name_Test
  raise TooLongExceptin(len(name))
__main__.TooLongExceptin: <exception str() failed>
 
During handling of the above exception, another exception occurred:
 
Traceback (most recent call last):
 File "D:/pythoyworkspace/file_demo/Class_Demo/extion_demo.py", line 26, in <module>
  name_Test()
 File "D:/pythoyworkspace/file_demo/Class_Demo/extion_demo.py", line 22, in name_Test
  print("打印異常信息:",e_result)
TypeError: __str__ returned non-string (type NoneType)

看完上述內(nèi)容是否對(duì)您有幫助呢?如果還想對(duì)相關(guān)知識(shí)有進(jìn)一步的了解或閱讀更多相關(guān)文章,請(qǐng)關(guān)注億速云行業(yè)資訊頻道,感謝您對(duì)億速云的支持。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI