嗨,我正在用C#重写Java代码,但我被困在这里:
public void printSolveInstructions() {
System.out.print(getSolveInstructionsString());
}
public String getSolveInstructionsString() {
if (isSolved()) {
return historyToString(solveInstructions);
} else {
return "No solve instructions - Puzzle is not possible to solve.";
}
}
public List<LogItem> getSolveInstructions() {
if (isSolved()) {
return Collections.unmodifiableList(solveInstructions);
} else {
return Collections.emptyList();
}
}
我知道如何重写前两个方法(用于引用最后一个方法),但是我不知道Collections.unmodifiableList()
和Collections.emptyList()
的等效方法
solveInstructions
的类型为List
,这是Java和C#中的声明:
private ArrayList<LogItem> solveInstructions = new ArrayList<LogItem>() // java
private List<LogItem> solveInstructions = new List<LogItem>() // c#
更新
我以这种方式重写了getSolveInstructions()
方法:
public List<LogItem> getSolveInstructions()
{
if (isSolved())
{
return solveInstructions.AsReadOnly();
}
else
{
return new List<LogItem>();
}
}
现在问题出在我使用.AsReadOnly()
时ide给我一个错误
答案 0 :(得分:0)
您的方法返回List<LogItem>
或IReadOnlyCollection<LogItem>
(通过调用List<T>.AsReadOnly()
方法产生;但是,您的返回类型为List<LogItem>
,与IReadOnlyCollection<LogItem>
。将方法返回类型更改为IList<LogItem>
,这两种类型均适用。
请注意,由于此方法可以返回只读列表或读写列表,因此调用代码应先检查返回的集合的IsReadOnly
属性,然后再尝试对其进行修改。