앞에 this
키워드는 콜론입니다. 누구든지이 상황에서 콜론이 의미하는 바를 설명 할 수 있습니까? 나는 이것이 상속이라고 생각하지 않는다.콜론 (:)은 무엇을 의미합니까?
감사
using System;
namespace LinkedListLibrary
{
class ListNode
{
private object data;
private ListNode next;
public ListNode(object dataValue)
: this(dataValue, null)
{
}
public ListNode(object dataValue, ListNode nextNode)
{
data = dataValue;
next = nextNode;
}
public ListNode Next
{
get
{
return next;
}
set
{
next = value;
}
}
public object Data
{
get
{
return data;
}
}
}
}
참조 http://stackoverflow.com/questions/338398/-thisfoo-syntax-in-c-constructors –
MSDN은 생성자에 대한 기본 및 키워드 사용법을 다음 사이트에서 다루고 있습니다. http://msdn.microsoft. com/ko-kr/library/ms173115 (VS.80) .aspx – rmoore
그리고 http://www.yoda.arachsys.com/csharp/constructors.html – RichardOD