Why declaring Mapper and Reducer classes as static?(为什么将 Mapper 和 Reducer 类声明为静态的?)
问题描述
这可能表明我缺乏对 Java 的理解,但我想知道为什么在大多数 MapReduce 程序中,mapper 和 reducer 类被声明为静态的?
This is likely showing my lack of Java understanding but I am wondering why in most MapReduce programs mapper and reducer classes are declared as static?
推荐答案
当将 mapper 和 reducer 类声明为另一个类的内部类时,必须将它们声明为 static,以便它们不依赖于父类.
When declaring mapper and reducer classes as inner classes to another class, they have to be declared static such that they are not dependent on the parent class.
Hadoop 使用反射为每个运行的 map 或 reduce 任务创建类的实例.创建的新实例需要一个零参数构造函数(否则它怎么知道要传递什么).
Hadoop uses reflection to create an instance of the class for each map or reduce task that runs. The new instance created expects a zero argument constructor (otherwise how would it know what to pass).
通过在没有 static 关键字的情况下声明内部 mapper 或 reduce 类,java 编译实际上创建了一个构造函数,该构造函数期望在构造时传入父类的实例.
By declaring the inner mapper or reduce class without the static keyword, the java compile actually creates a constructor which expects an instance of the parent class to be passed in at construction.
您应该能够通过对生成的类文件运行 javap 命令来看到这一点
You should be able to see this by running the javap command against the generated classfile
另外,static 关键字在父类声明中使用时无效(这就是为什么您在顶层看不到它,而只在子类中看到它的原因)
Also, the static keyword is not valid when used in a parent class declaration (which is why you never see it at the top level, but only in the child classes)
这篇关于为什么将 Mapper 和 Reducer 类声明为静态的?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:为什么将 Mapper 和 Reducer 类声明为静态的?


基础教程推荐
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- 降序排序:Java Map 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01