DEV Community

Jeeva Aj
Jeeva Aj

Posted on

How to create a project in Java?

File  New  Java Project

Project names should be connected with underscores.

Java keywords always start with small letters. You can learn the keywords through oracle docs.com

Identifiers: Example: int no1  no1 is the identifier.

  1. Always starts with alphabets
  2. Starts with $ or _
  3. No space or special characters should be allowed.

Top comments (0)