1

do I have to use first small letter in a package name while creating my own package?

Andrew Thompson
  • 168,117
  • 40
  • 217
  • 433
smallB
  • 16,662
  • 33
  • 107
  • 151

3 Answers3

3

It is standard java code convention

jmj
  • 237,923
  • 42
  • 401
  • 438
1

Sure. You should use ALL small letters in package naming. Java code conventions

mishadoff
  • 10,719
  • 2
  • 33
  • 55
0

preferred but not obligatory. As an example org.omg.CORBA

Pavel K.
  • 436
  • 4
  • 11