클래스 초기 화 기 (부모 클래스 구조 함수 호출, 다른 구조 함수 호출)
1598 단어 구조 함수
namespace ClassLib
{
public class ClassBase
{
//
public ClassBase(){
}
public string property { set; get; }
//
public ClassBase(string a){
this.property = a;
}
}
}
namespace ClassLib
{
public class ClassChild:ClassBase
{
//
public ClassChild()
: base(){
}
//
public ClassChild(string b)
: base(b){
}
}
}
namespace ClassLib
{
public class ClassThis
{
//this ,this this = new Object();Object
private string getList(string str)
{
return string.Format(" :{0}", str);
}
public string getString(string str)
{
return this.getList(str); // new ClassThis.getList(str);
}
public string thisParent { get; set; }
//
public ClassThis(){
this.thisParent= "thisParent";
}
public string thisChild { get; set; }
//
public ClassThis(string child)
: this(){
thisChild = child;
}
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
구조 함수를 빌려 비원형을 계승하다Object {tag: Array[3]} tag: Array[3] 0: "js" 1: "html" 2: "aa" length: 3 __proto__: Array[0] __proto__: Article construc...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.