如何到达对象引用本身

时间:2011-10-15 09:50:42

标签: java android this-pointer

newDt.importRow(dt.dataSource[i]);

当我在上面调用时,我希望在下面的块中到达对象本身。我的意思是我想用getCount()方法达到newDt对象的数量。我尝试使用此关键字,但它没有运行。我该怎么做呢?

public void importRow(Object[] row){
    int newCount = this.getCount()+1;
    Object[][] newDataSource = new Object[getCount()+1][getColumns().length];
    for (int i = 0; i < newDataSource.length; i++) {
        for (int j = 0; j < getColumns().length; j++) {
            newDataSource[i][j] = this.getValueByColumnIndex(i, j);
        }
    }
    for (int i = 0; i < getColumns().length; i++) {
        newDataSource[newCount][i] = row[i];
    }
}

0 个答案:

没有答案