gpt4 book ai didi

java - 基于标准Stack的稀疏矩阵实现产生编译错误

转载 作者:行者123 更新时间:2023-12-01 07:10:28 24 4
gpt4 key购买 nike

我正在基于 Stack 类实现稀疏矩阵,但出现以下错误:

Sparse.java:6: Sparse is not abstract and does not override abstract method pop() in Stack
public class Sparse implements Stack {

这是有问题的代码片段:

public class Sparse implements Stack {

static int matrix[][] = new int[6][6];

public static int[][] Random() {
Random rand = new Random(seed);
rand.nextInt(100);
for (int i = 0; i < matrix.length; i++) {
for (int j = 0; j < array[0].length; j++) {
matrix[i][j] = rand.nextInt(100);
}
return matrix;
}
}
}

任何和所有帮助将不胜感激。谢谢。

最佳答案

这意味着接口(interface)Stack有一个方法pop()。您必须实现方法pop(),否则它将无法编译。

如果您必须快速测试代码并稍后实现该方法,您可能需要

public int pop() { // Refer to your Stack interface for signature - they must match.
throw new UnsupportedOperationException("not implemented");
}

关于java - 基于标准Stack的稀疏矩阵实现产生编译错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15360438/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com