JS클래스 정의 원형 방법의 두 가지 실현의 차이
<script>
function JSClass()
{
alert('This is JSClass');
}
function JSClass.prototype.MethodA()
{
alert('This is MethodA');
};
JSClass.prototype.MethodB = function()
{
alert('This is MethodB');
};
</script>
그러나 차이점도 있다. 주로 컴파일러가 주는 컴파일 우선순위가 다르다. 하나는 높은 우선순위의 함수이고, 하나는 낮은 우선순위의 부여 문장이다.
다음 2단계 코드를 실행하면 알 수 있습니다.
코드 1:
<script>
Foo1();
function Foo1()
{
alert('This is Foo1.');
}
Foo2();
var Foo2 = function()
{
alert('This is Foo2.');
}
// Foo2();
</script>
코드 2:
function NormalClass()
{
this.m_Property1 = 'P1 in Normal Class.';
this.m_Property2 = 'P2 in Normal Class.';
this.toString = function()
{
return '[class NormalClass]';
}
return new InnerClass();
function InnerClass()
{
this.m_Property1 = 'P1 in Inner Class.';
this.m_Property2 = 'P2 in Inner Class.';
this.toString = function()
{
return '[class InnerClass]';
}
}
InnerClass.prototype.Method1 = function()
{
alert(this.m_Property1);
};
function InnerClass.prototype.Method2()
{
alert(this.m_Property2);
};
// return new InnerClass();
}
var nc = new NormalClass();
nc.Method1() // ;
nc.Method2();
//InnerClass.prototype.Method1 = function() , function InnerClass.prototype.Method2()
참고: JS클래스 정의 원형 방법의 두 가지 실현의 차이
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.