在Java中扩展静态类意味着什么?
2022-09-02 23:03:15
在 Web 中查看一些 java 示例代码时,我遇到了以下语法:
public class WordCount {
public static class Map extends Mapper<LongWritable, Text, Text, IntWritable> {
private final static IntWritable one = new IntWritable(1);
private Text word = new Text();
public void map(LongWritable key, Text value, Context context) throws IOException, InterruptedException {
//...
}
}
//...
}
来自C#背景,静态类不能从另一个类继承,我对类后面的关键字有点困惑。扩展静态类意味着什么,它提供了哪些优势?extends
Map