Python 사용자 정의 이상 구현

실제 개발 에 서 는 시스템 이 제공 하 는 이상 유형 이 개발 의 수 요 를 만족 시 키 지 못 하 는 경우 도 있다.이 럴 때 당신 은 새로운 이상 류 를 만들어 서 자신의 이상 을 가 질 수 있 습 니 다.이상 류 는 Exception 류 에서 직접 계승 하거나 간접 적 으로 계승 할 수 있다.
흔히 볼 수 있 는 내장 이상:

1.이상 유형 사용자 정의

#1.         ,       Exception   ,             ,        
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("     "+str(self.leng)+",     ")

2.이상 을 수 동 으로 던 지 는 방법:raise
시스템 의 자체 이상 은 트리거 만 하면 자동 으로 던 집 니 다.예 를 들 어 NameError 와 같 지만 사용자 정의 이상 은 사용자 가 언제 던 질 지 스스로 결정 해 야 합 니 다.
raise 의 유일한 매개 변 수 는 던 질 이상 을 지정 합 니 다.그것 은 이상 한 인 스 턴 스 나 이상 한 클래스 여야 합 니 다.(즉,Exception 의 하위 클래스)대부분의 이상 한 이름 은'Error'로 끝나 기 때문에 실제 이름 을 지 을 때 가능 한 한 표준 이상 이름과 같 습 니 다.

#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("     "+str(self.leng)+",     ")
 
#2.             
def name_Test():
    name = input("enter your naem:")
    if len(name)>4:
      raise TooLongExceptin(len(name)) #       ,  raise  ,      ,   
    else :
      print(name)
 
#    ,  
name_Test()
-----------------                     :--------------------------------------
enter your naem:      
Traceback (most recent call last):
     6,     
 File "D:/pythoyworkspace/file_demo/Class_Demo/extion_demo.py", line 21, in <module>
  name_Test()
__main__.TooLongExceptin: <exception str() failed>

3.사용자 가 수 동 으로 던 진 이상 포착

#1.           ,           
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)
 
#    ,  
name_Test()
==========      :==================================================
enter your naem:aaafsdf
      
Traceback (most recent call last):
      :      7,     
     7,     
 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)

파 이 썬 사용자 정의 이상 실현 에 관 한 이 글 은 여기까지 소개 되 었 습 니 다.더 많은 파 이 썬 사용자 정의 이상 내용 은 우리 의 이전 글 을 검색 하거나 아래 의 관련 글 을 계속 찾 아 보 세 요.앞으로 많은 응원 바 랍 니 다!

좋은 웹페이지 즐겨찾기