我正在做的是將C#項目轉換爲java編寫自定義類的練習。 不幸的是,我無法弄清楚這個人在構造函數中使用「this」關鍵字所做的事情。Java - 轉換「this [int x,int y]」
// C# Code - How is this written in Java?
public Player this[int x, int y]
{
get { return squares[x, y]; }
set { squares[x, y] = value; }
}
我轉置了很多的代碼,有點卡住了這一點。我似乎無法在Java中找到關於此特定實例的任何信息。有沒有人對我有好的領導?
感謝喬恩......這幫了很大忙。很高興知道有沒有實際的多維陣列... – 2012-08-15 18:17:51