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 사용자 가 이상 한 자 료 를 어떻게 사용자 정의 하 는 지 에 대해 서 는 다른 글 을 주목 하 십시오!
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
로마 숫자를 정수로 또는 그 반대로 변환그 중 하나는 로마 숫자를 정수로 변환하는 함수를 만드는 것이었고 두 번째는 그 반대를 수행하는 함수를 만드는 것이었습니다. 문자만 포함합니다'I', 'V', 'X', 'L', 'C', 'D', 'M' ; 문자열이 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.