为什么将 Mapper 和 Reducer 类声明为静态? [英] Why declaring Mapper and Reducer classes as static?

查看:33
本文介绍了为什么将 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 关键字的内部映射器或化简类,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 类声明为静态?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆