React 컨스트럭터에서 super()를 호출하는 기능은 무엇입니까? Learning React는 문서로부터 다음 예를 제시합니다. class Square extends React.Component { constructor() { super(); this.state = { value: null, }; } ... } Mozilla에 따르면 Super를 사용하면this컨스트럭터 안에 있습니다.스탠드아론을 사용해야 하는 다른 이유가 있습니까?super(알고 있습니다.super부모 클래스의 메서드에도 액세스 할 수 있습니다). 단, React를 사용하면 호출만 하는 다른 사용 사례가 있습니까?super()혼자서요?super()를 호출합니다.constructor그것의parentclass. 부모 클래스에서 일부 변..