Walid-Shouman
5/23/2017 - 8:11 AM

Java tips and tricks

Java tips and tricks

Envrionment Setup

  • Atlassian's guide to setup Eclipse IDE for linux.
  • CompileJava an online java compiler.

Template project

  • A template project by mplacona, not to start from scratch.

Fill an instance list with the same object

List<SomeObject> list = new ArrayList<> (Collections.nCopies(70, someObject));

Ref: SO answer