Skip to main content
replaced http://stackoverflow.com/ with https://stackoverflow.com/
Source Link
URL Rewriter Bot
URL Rewriter Bot

Do not use Class.newInstance(); see this thread: Why is Class.newInstance() evil?Why is Class.newInstance() evil?

Like other answers say, use Constructor.newInstance() instead.

Do not use Class.newInstance(); see this thread: Why is Class.newInstance() evil?

Like other answers say, use Constructor.newInstance() instead.

Do not use Class.newInstance(); see this thread: Why is Class.newInstance() evil?

Like other answers say, use Constructor.newInstance() instead.

Source Link
C. K. Young
  • 224.1k
  • 47
  • 393
  • 445

Do not use Class.newInstance(); see this thread: Why is Class.newInstance() evil?

Like other answers say, use Constructor.newInstance() instead.