Python 사용자 정의 이상 구현
흔히 볼 수 있 는 내장 이상:
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)
파 이 썬 사용자 정의 이상 실현 에 관 한 이 글 은 여기까지 소개 되 었 습 니 다.더 많은 파 이 썬 사용자 정의 이상 내용 은 우리 의 이전 글 을 검색 하거나 아래 의 관련 글 을 계속 찾 아 보 세 요.앞으로 많은 응원 바 랍 니 다!
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Python의 None과 NULL의 차이점 상세 정보그래서 대상 = 속성 + 방법 (사실 방법도 하나의 속성, 데이터 속성과 구별되는 호출 가능한 속성 같은 속성과 방법을 가진 대상을 클래스, 즉 Classl로 분류할 수 있다.클래스는 하나의 청사진과 같아서 하나의 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.