python 사용자 정의 이상 인 스 턴 스 설명

설명 하 다.
1.프로그램 은 새로운 이상 류 를 만들어 서 자신의 이상 을 명명 할 수 있 습 니 다.이상 은 Exception 류 에서 직접 또는 간접 적 으로 계승 하 는 전형 적 인 방식 이 어야 한다.
2.이상 python 은 하나의 큰 기본 클래스 가 있 는데 Exception 을 계승 합 니 다.따라서 우리 의 맞 춤 형 클래스 도 Exception 을 계승 해 야 한다.
실례

class ShortInputException(Exception):
    def __init__(self, length, atleast):
        self.length = length
        self.atleast = atleast
def main():
    try:
        s = input('    --> ')
        if len(s) < 3:
            # raise          
            raise ShortInputException(len(s), 3)
    except ShortInputException as result:#x              
        print('ShortInputException:        %d,       %d'% (result.length, result.atleast))
    else:
        print('      ')
main()
지식 포인트 확장:
사용자 정의 이상 형식

#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)+",     ")

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

 #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)

이상 은 python 사용자 가 이상 한 인 스 턴 스 를 사용자 정의 하 는 상세 한 내용 입 니 다.python 사용자 가 이상 한 자 료 를 어떻게 사용자 정의 하 는 지 에 대해 서 는 다른 글 을 주목 하 십시오!

좋은 웹페이지 즐겨찾기