What are helper objects in java?

后端 未结 6 485
无人共我
无人共我 2021-01-30 11:04

I come across few of the times called helper objects... can anybody elaborate what are those helper objects and why do we need them?

6条回答
  •  暗喜
    暗喜 (楼主)
    2021-01-30 11:13

    Helper class, in my opinion, is similar to normal functions declared outside of classes in C++. For example, if you need a global constant for many classes, then you can define a helper class that encloses a final static const variable.

提交回复
热议问题