파이썬에서 클래스란 무엇인가요?
는 카테고리나 타입의 동의어라고 볼 수 있습니다. 모든 객체는 특정 클래스에 속하며 클래스의 인스턴스라고 합니다.
예: 새는 "새"의 예입니다. 이것은 많은 하위 클래스가 있는 일반(추상) 클래스일 뿐입니다. 여러분이 보는 새는 하위 클래스 "종달새"에 속할 수 있습니다. "새"는 "종달새"가 하위 집합인 모든 새의 집합이라고 생각하세요. 객체가 속한 클래스가 다른 객체가 속한 클래스의 하위 집합인 경우 전자를 후자의 하위 클래스라고 하므로 "larks"는 "birds"의 하위 클래스이고 "birds"는 "larks" "Bird"입니다. " superclass
하위 클래스를 정의하는 것은 더 많은 메서드를 정의하는 과정일 뿐입니다.
클래스 만들기
>>> class Person: def setName(self,name): self.name=name def getName(self): return self.name def greet(self): print "Hello,world! I'm %s" % self.name >>> foo=Person()>>> bar=Person()>>> foo.setName('Nsds')>>> bar.setName('Ysdy')>>> foo.greet() Hello,world! I'm Nsds>>> bar.greet() Hello,world! I'm Ysdy
foo의 setName 및 Greeting 함수를 호출하면 foo는 자동으로 자신을 첫 번째 매개 변수 함수로 전달하므로 이름은 본인. self가 없으면 멤버 메서드는 속성을 조작하려는 객체 자체에 액세스할 수 없습니다.
특성은 외부에서 액세스할 수 있습니다:
>>> foo.name'Nsds'>>> bar.name='Yoda'>>> bar.greet() Hello,world! I'm Yoda
특성, 함수, 메서드
self 매개 변수는 실제로 메서드의 매개 변수이며 함수의 차이점입니다. 메소드는 첫 번째 매개변수를 해당 인스턴스에 바인딩하므로 이 매개변수를 제공할 필요가 없습니다. 따라서 속성을 일반 함수에 바인딩할 수 있으므로 특별한 자체 매개 변수가 없습니다.
(특성은 개체 내부의 변수이고 개체의 상태는 해당 속성으로 설명되며 개체의 메서드는 해당 기능을 변경할 수 있습니다. 객체 외부에서 직접 기능에 액세스할 수 있습니다)
>>> class Class: def method(self): print 'I have a self!' >>> def function(): print "I don't...">>> s=Class()>>> s.method() I have a self!>>> s.method=function>>> s.method() I don't...
birdsong 변수 참조는 Bird.sing 메소드에 바인딩되거나 self 매개변수에 대한 액세스(여전히 클래스의 동일한 인스턴스에 바인딩됨)
>>> class Bird: song='Squaawk' def sing(self): print self.song >>> bird=Bird()>>> bird.sing() Squaawk>>> birdsong=bird.sing>>> birdsong() Squaawk
앞에 이중 배치 Underscore라는 이름은 메서드나 기능을 비공개로 만들 수 있습니다(외부에서 액세스할 수 없음)
>>> class Secretive: def __inaccessible(self): print "Bet you can't see me..." def accessible(self): print "The secret message is:" self.__inaccessible() >>> s=Secretive()>>> s.__inacessible() Traceback (most recent call last): File "<pyshell#182>", line 1, in <module> s.__inacessible() AttributeError: 'Secretive' object has no attribute '__inacessible'>>> s.accessible() The secret message is: Bet you can't see me...
클래스의 내부 정의에서 이중 밑줄로 시작하는 모든 이름은 단일 밑줄과 클래스 이름이 앞에 오는 형식으로 "번역됩니다"
>>> Secretive._Secretive__inaccessible<unbound method Secretive.__inaccessible> >>> s._Secretive__inaccessible() Bet you can't see me...
클래스 네임스페이스
클래스를 정의할 때 클래스 문에 있는 모든 코드는 특수 네임스페이스, 즉 클래스 네임스페이스에서 실행됩니다. 이 네임스페이스는 클래스의 모든 멤버가 액세스할 수 있습니다.
클래스의 정의는 실제로 실행 코드 블록입니다
>>> =+=1 >>> m1=>>>>>>1 >>> m1.members=2 >>>2 >>> m2=>>>>>>2 >>>>>>3 >>>2 >>>
새 멤버 값은 m1의 특성에 기록되어 클래스 범위 내의 변수를 보호합니다.
슈퍼 클래스
>>> class Filter: def init(self): self.blocked=[] def filter(self,sequence): return [x for x in sequence if x not in self.blocked] >>> class SPAMFilter(Filter): def init(self): self.blocked=['SPAM'] >>> f=Filter()>>> f.init()>>> f.filter([1,2,3]) [1, 2, 3]>>> s=SPAMFilter()>>> s.init()>>> s.filter(['SPAM','SPAM','egg','name','ff']) ['egg', 'name', 'ff']
상속, 슈퍼 클래스
>>> class Filter: def init(self): self.blockes=[] def filter(self,sequence): return [x for x in sequence if x not in self.blocked] >>> class S(Filter): def init(self): self.blocked=['s'] >>> f=Filter()>>> f.init()>>> f.filter([1,2,3])
여러 슈퍼클래스
먼저 상속된 클래스의 메서드는 나중에 상속된 클래스의 메서드를 재정의합니다
>>> class C(): def calculate(self,expression): self.value=eval(expression) >>> class Talker(): def talk(self): print 'Hi,my value is',self.value >>> class TalkingCalculator(C,Talker): pass>>> tc=TalkingCalculator()>>> tc.calculate('1+2*3')>>> tc.talk() Hi,my value is 7
관련 권장 사항: "Python Tutorial"
위 내용은 파이썬에서 클래스란 무엇인가요?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!